ReQL command reference - RethinkDB
ReQL command: object
Command syntax
r.object([key, value,]...) → object
Description
Creates an object from a list of key-value pairs, where the keys must
be strings. r.object(A, B, C, D) is equivalent to
r.expr([[A, B], [C, D]]).coerce_to('OBJECT').
Example: Create a simple object.
r.object("id", 5, "data", r.array("foo", "bar")).run(conn);
// Result:
{ "data": ["foo", "bar"], "id": 5}
Related commands
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub