OBJECT

DropBenefitEdge

The DropBenefitEdge links a drop with a benefit and describes how many times that benefit can be granted by this drop. A benefit can be granted multiple times by event based drops. For example, a benefit could be granted every time the broadcaster gets a kill streak, up to 3 times.

link GraphQL Schema definition

1type DropBenefitEdge {
2
3# The benefit description.
4benefit: DropBenefit!
5
6# The number of times a benefit has been claimed.
7claimCount: Int
8
9# A restriction of the benefit on how often it can be claimed within a drop.
10entitlementLimit: Int!
11
12}