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.replace()
Replace a 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 |
Yes |
Document fields for the
For supported document fields, see
The object can’t include the following metadata 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!