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.

database.update()

Updates a database’s metadata and settings.

Signature

update(object: {*: Any}) => DatabaseDef

Description

The update() method updates the field values of a Database collection document.

Parameters

Parameter Type Required Description

object

Object

Yes

New database field values.

Return value

Type Description

DatabaseDef

Database definition with updated fields.

Examples

Database.byName("childDB")!.update({typechecked: false})
{
  name: "childDB",
  coll: Database,
  ts: Time("2099-06-24T21:58:19.346Z"),
  priority: 10,
  global_id: "ysjpykbahyyr1",
  typechecked: false
}

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!