This document is a quick reference for query operators you can use to query anything that's on your content objects.
To experiment with querying your content from within Builder, you can use the Builder API Explorer.
This document covers the following operators:
When querying Builder data, you can use MongoDB style operators, such as:
Operator | Description |
---|---|
Use to match values equal to a specified value. | |
Use to match values greater than a specified value. | |
Use to match values greater than or equal to a specified value. | |
Use to match any of the values you specify in an array. | |
Use to match values less than a specified value. | |
Use to match values that are less than or equal to a specified value. | |
Use to match all values not equal to a specified value. | |
Use to match none of the values specified in an array. This example excludes the numbers | |
Use to join query clauses with a logical | |
Use to invert the effect of a query expression and return documents that do not match the query expression. | |
Use to join query clauses with a logical | |
Use to join query clauses with a logical | |
Use to match documents that have the specified field. | |
Use to select documents if a field is of the specified type. | |
Use to select documents if element in the array field matches all the specified | |
Use to select documents where values match a specified regular expression. | |
Use to specify options to use with For more detail about available options, refer to the MongoDB |
Descriptions for the above operators adapted from MongoDB per the Creative Commons License as referenced on the MongoDB Documentation GitHub repo. For more in-depth information on the query operators above, see MongoDB's documentation on Query and Projection Operators.
For more information on querying, see the Content API documentation.