Skip to content

Filtering

Filters can be applied on any navigation. The syntax used for filtering is a sub-set of Filtrera.

Below is a list of operators and keywords supported by the query engine.

OperatorDescription
==Equal
!=Not equals
<Less than
<=Less than or equal
>Greater than
>=Greater than or equal
andLogical “and”, matches if both operands are true
orLogical “or”, matches if any operand is true
not <expression>Inverse a boolean expression
anyof [<value>, <value>]Matches arrays that contain any of the provided value
allof [<value>, <value>]Matches arrays that contain all of the provided value

now keyword

now can be used to reference the current time. This can be combined with basic arithmetic and durations to query for relative ranges.

To filter for nodes created the last 7 days (assuming the node has a createdAt field):

createdAt > now - 7 days