Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 588 Bytes

File metadata and controls

29 lines (23 loc) · 588 Bytes
layout api-command
language Python
permalink api/python/object/
command object
related_commands
coerce_to merge keys
coerce_to/
merge/
keys/

Command syntax

{% apibody %} r.object([key, value,]...) → object {% endapibody %}

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', ['foo', 'bar']).run(conn)
{'data': ["foo", "bar"], 'id': 5}