Filtering records

How to use filters

For types that support filters (all of them but User), results can be filtered using the following syntax:

my_query(filter: {field_to_filter: {predicate: value}) {
  ...
}

It is also possible to combine several filters together:

my_query(filter: {first_field_to_filter: {predicate: value}, second_field_to_filter: {predicate: value}, ... ) {
  ...
}

Supported filters

Triggers

Matches

Outcomes

Last updated