ToObject
Copied!
ToObject( array )
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
An array of arrays containing field names and values. |
Examples
The following query converts an array into an object:
Copied!
client.query(
q.ToObject([['name', 'Dennis'], ['age', 37]])
)
.then((ret) => console.log(ret))
{ name: 'Dennis', age: 37 }
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!