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. |
Delete a database
Reading or writing database documents requires an admin key. |
Solution
Use the Delete
function:
{
ref: Database("llyr"),
ts: 1622573509680000,
name: 'llyr',
data: { env: 'test' },
global_id: 'yoiji573cydyy'
}
{'ref': Ref(id=llyr, collection=Ref(id=databases)), 'ts': 1622573512400000, 'name': 'llyr', 'data': {'env': 'test'}, 'global_id': 'yoijihdqgydyy'}
map[data:map[env:test] global_id:yoiji3uwcybyy name:llyr ref:{llyr 0xc00009b7d0 0xc00009b7d0 <nil>} ts:1622573473320000]
ObjectV(ref: RefV(id = "llyr", collection = RefV(id = "databases")),ts: LongV(1622573463870000),name: StringV(llyr),data: ObjectV(env: StringV(test)),global_id: StringV(yoijia8e1ybyy))
{ref: ref(id = "llyr", collection = ref(id = "databases")), ts: 1622573501510000, name: "llyr", data: {env: "test"}, global_id: "yoiji48irybyy"}
{
ref: Database("llyr"),
ts: 1624310577730000,
name: 'llyr',
data: { env: 'test' },
global_id: 'yoat8nnggybyy'
}
Discussion
When a database is deleted, all of the database contents are deleted, including documents, collections, functions, keys, tokens, roles, access providers, and indexes.
It is not possible to delete the parent database, the current database,
or any of the current database’s peers using Delete
. You can only
delete child databases.
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!