OBJECT

DropEventCondition

Defines a condition that must be met for an in game event to trigger a drop.

link GraphQL Schema definition

1type DropEventCondition {
2
3# Specifies the event to look for in the event payload.
4key: String!
5
6# The comparator of the value to the event payload.
7operator: DropEventConditionOperator!
8
9# Specifies the value to compare the event payload to.
10value: String!
11
12}