ENUM

ComparisonOperator

A set of comparison operators that can be used in query filters.

link GraphQL Schema definition

1enum ComparisonOperator {
2
3# Equal.
4EQUAL
5
6# Not equal.
7NOT_EQUAL
8
9# Exclusive greater than.
10GREATER_THAN
11
12# Inclusive greater than.
13GREATER_THAN_OR_EQUAL
14
15# Exclusive less than.
16LESS_THAN
17
18# Inclusive less than.
19LESS_THAN_OR_EQUAL
20}