Check out v4 of the Fauna CLI

v4 of the Fauna CLI is now in beta.

The new version introduces enhancements to the developer experience, including an improved authentication workflow. To get started, check out the CLI v4 quick start.

Credential.byDocument()

Get credential by document.

Signature

Credential.byDocument(document: { *: Any } | Null) => Ref<Credential>

Description

Get the Credential document associated with a provided identity document.

Parameters

Parameter Type Required Description

document

Object

Yes

Document object with credentials.

Return value

Type Description

Ref<Credential>

Resolved reference to a Credential document. Can resolve to an existing document or a NullDoc.

Examples

let document = Customer.byId("111")
Credential.byDocument(document)
{
  id: "401328088781160521",
  coll: Credential,
  ts: Time("2099-06-21T18:39:00.735Z"),
  document: Customer("111")
}

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!