Does the ItemsQuery support different operators between rules?

According to the below article, rules and operators are specified separately:

From what I am understanding, you provide a list of rules to filter by as an array, and the overall operator between the rules.

Is it possible to specify multiple rules and operators between rules? For example to apply a filter like the below in GraphQL:
(name = ‘test’ AND status=‘done’) OR (otherColumn=‘0’)
Or can you only resolve filters with only one type of condition between all rules (either AND or OR)?

Hello @EricM,

Only one operator can be used at a time.

Let me know if you have any other questions :slightly_smiling_face:

Cheers,
Matias

1 Like