Reference a field in a document.
doc.field()
, which retrieves that field’s value from every document in the result set.
object
.
object.field()
function is aware of the table’s schema if defined..
), provide a custom separator using the separator
option to avoid unexpected behavior.users
table where the user’s age
is greater than or equal to 21
.
orders
table where the order’s shipping address country
is UAE
, where the country is a nested field of address
.
users
table where the user’s property.username
(literal field name) is john
. In this example, we use the separator
option to specify a custom separator for nested fields.
eq
- Logical Equality Operationne
- Logical Inequality Operationlt
- Logical Less Than Operationle
- Logical Less Than or Equal Operationgt
- Logical Greater Than Operationge
- Logical Greater Than or Equal Operationand
- Logical AND Operationor
- Logical OR Operationnot
- Logical NOT Operationtable
- Referencing a Tablefilter
- Filtering Documents