MoveDatabase

Copied!
( from, to )

Description

The MoveDatabase function moves the from database into the to database, making from a child database of to.

You must use an admin key that has access to the from database or MoveDatabase fails.

Parameters

Argument Type Definition and Requirements

from

A database ref for the database to be moved.

to

A database ref for the new parent database of from.

Returns

A database ref for the moved database.

Examples

The following example creates the stamps database and the hobbies database, and then moves the stamps database into the hobbies database:

Copied!
Promise.all([
  client.query(q.({ name: 'stamps' })),
  client.query(q.({ name: 'hobbies' })),
])
.then(([stamps, hobbies]) => client.query(
  q.(stamps.ref, hobbies.ref)
))
.then((ret) => console.log(ret))
Moved: { ref: ("stamps", ("hobbies")),
  ts: 1570137825180000,
  name: 'stamps' }

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!