FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. Fauna accounts created after August 21, 2024 must use FQL v10. These accounts will not be able to run FQL v4 queries or access the v4 Dashboard. For more details, see the v4 EOL announcement and migration guide. Contact support@fauna.com with any questions. |
Create a child database
Reading or writing database documents requires an admin key. |
Solution
Use the CreateDatabase
function:
{
ref: Database("annuvin"),
ts: 1622573508720000,
name: 'annuvin',
global_id: 'yoiji573cydyy'
}
{'ref': Ref(id=annuvin, collection=Ref(id=databases)), 'ts': 1622573511610000, 'name': 'annuvin', 'global_id': 'yoijihdqgydyy'}
map[global_id:yoiji3uwcybyy name:annuvin ref:{annuvin 0xc0001804b0 0xc0001804b0 <nil>} ts:1622573470750000]
ObjectV(ref: RefV(id = "annuvin", collection = RefV(id = "databases")),ts: LongV(1622573448030000),name: StringV(annuvin),global_id: StringV(yoijia8e1ybyy))
{ref: ref(id = "annuvin", collection = ref(id = "databases")), ts: 1622573481000000, name: "annuvin", global_id: "yoiji48irybyy"}
{
ref: Database("annuvin"),
ts: 1624310575420000,
name: 'annuvin',
global_id: 'yoat8nnggybyy'
}
Discussion
It is not possible to create parent or peer databases with the
CreateDatabase
function; you can only create a child database in
the current database.
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!