Examples of GraphQL operations: Queries with filters and counts
Less than to read
Filtering syntaxes can have various forms and use several operators, such as:
| Operator | Signification | Example |
| _eq | Equals |
|
| _ne | Not equal to |
|
| _gt | Greater than |
</tr> |
| _gte | Greater than or equal |
|
| _lt | Less than |
|
| _lte | Less than or equal to |
|
| _regex | Regular expression |
|
| _atLeast | Minimum number of lines |
|
| _atMost | Maximum number of lines |
|
| _every | Every line |
|
| _none | Not all lines |
|
| Simple value equality |
|
| Comparison operators (less than) |
|
| Combined filters (and) |
|
| Filter on nested properties (not equal) |
|
| Combined filters (or) |
|
| List of values |
|
| Regular expression |
|
| Minimum number of lines in a secondary level |
|
| Minimum count on condition |
|
| Condition fulfilled in every line |
|
| Condition not fulfilled in every line |
|
| Not on condition |
|