ENUM

DropEventConditionOperator

The operator used to compare the in-game event.

link GraphQL Schema definition

1enum DropEventConditionOperator {
2
3# An unknown operator, only possible before the drop condition has been set.
4UNKNOWN
5
6# Less than.
7SMALLER
8
9# Less than or equal.
10SMALLER_EQUAL
11
12# Equal.
13EQUAL
14
15# Greater than.
16GREATER
17
18# Greater than or equal.
19GREATER_EQUAL
20}