FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
Create a document in a collection
Solution
Use the Create
function:
{
ref: Ref(Collection("dilapidated_huts"), "300223085354680832"),
ts: 1622573895720000,
data: { material: 'straw' }
}
{'ref': Ref(id=300223090590220800, collection=Ref(id=dilapidated_huts, collection=Ref(id=collections))), 'ts': 1622573900720000, 'data': {'material': 'straw'}}
map[data:map[material:straw] ref:{300223005074653696 0xc000180570 0xc000180570 <nil>} ts:1622573819180000]
ObjectV(ref: RefV(id = "300222988909806080", collection = RefV(id = "dilapidated_huts", collection = RefV(id = "collections"))),ts: LongV(1622573803740000),data: ObjectV(material: StringV(straw)))
{
ref: Ref(Collection("dilapidated_huts"), "302044124774662656"),
ts: 1624310574250000,
data: { material: 'straw' }
}
Discussion
The Create
function needs both the Reference to a collection and
the document’s data.
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!