ToArray
Copied!
ToArray( object )
Examples
The following query uses ToArray
to convert an object into an array:
Copied!
client.query(
q.ToArray({ 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!