OBJECT

Inventory

Contains the inventory for a particular user, which consists of drops.

link GraphQL Schema definition

1type Inventory {
2
3# The campaigns which have drops that the user is eligible for and has banked (or
4# is currently earning) minutes-watched progress for.
5dropCampaignsInProgress: [DropCampaign!]
6
7# The drops awarded to this user via Drops 1.0 and triggered by game publishers
8# according to minutes watched data.
9drops: UserDropAwardConnection
10
11# The drops awarded to this user via Drops 2.0 and triggered by broadcaster's game
12# events.
13gameEventDrops: [UserDropReward]
14
15}