OBJECT
DropEventCondition
Defines a condition that must be met for an in game event to trigger a drop.
link GraphQL Schema definition
1 type DropEventCondition { 2 3 # Specifies the event to look for in the event payload. 4 : String! 5 6 # The comparator of the value to the event payload. 7 : DropEventConditionOperator! 8 9 # Specifies the value to compare the event payload to. 10 : String! 11 12 }