credential.replace()
Replace a credential.
Description
The replace()
method replaces credentials with the object supplied. This
method removes any fields not supplied by the object, with some exceptions.
The immutable metadata fields coll
and ts
aren’t removed and can’t be
replaced.
The object must include the required fields.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
object |
Yes |
Object with the replacement document 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!