credential.replace()

Replace a credential.

Signature

replace(data: { *: Any }) => Credential

Description

Replaces all fields in a Credential document with fields from a provided data object. Fields not present in the data object, excluding the coll and ts metadata fields, are removed.

Parameters

Parameter Type Required Description

data

Object

Yes

Document fields for the Credential document. Fields not present, excluding the coll and ts metadata fields, in the object are removed.

For supported document fields, see Credential collection.

The object can’t include the following metadata fields:

* coll * ts

Return value

Type Description

Document

Document with replaced fields.

Examples

Credential.byId("412654807560487424")!.replace({
  document: Customer.byId("111"),
  password: "sekret"
})
{
  id: "412654807560487424",
  coll: Credential,
  ts: Time("2099-07-28T03:42:54.650Z"),
  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!