OBJECT

DropObject

Contains all of the information about a Drop awardable to a user. // deprecated in favor of EventBasedDrop and TimeBasedDrop.

link GraphQL Schema definition

1type DropObject {
2
3# The redirect URL where a user can link their account.
4accountLinkURL: String! @deprecated( reason: "No longer supported" )
5
6# The actions defining what happens after a drop is triggered.
7actions: [DropAction!]! @deprecated( reason: "No longer supported" )
8
9# The description of this drop.
10description: String! @deprecated( reason: "No longer supported" )
11
12# The URL that links to the details / marketing page for this drop.
13detailsURL: String! @deprecated( reason: "No longer supported" )
14
15# The date at which this drop can no longer occur.
16endDate: Time! @deprecated( reason: "No longer supported" )
17
18# The game associated with this drop.
19game: Game! @deprecated( reason: "No longer supported" )
20
21# The Drops ID.
22id: ID! @deprecated( reason: "No longer supported" )
23
24# An image asset for this drop.
25imageURL: String! @deprecated( reason: "No longer supported" )
26
27# The friendly name of this drop.
28name: String! @deprecated( reason: "No longer supported" )
29
30# The OrganizationID of the owner of this drop.
31ownerID: ID! @deprecated( reason: "No longer supported" )
32
33# The friendly name of the owner of this drop.
34ownerName: String! @deprecated( reason: "No longer supported" )
35
36# The Quest name for this specific Drop.
37questName: String! @deprecated( reason: "No longer supported" )
38
39# The rules defining what needs to happen to trigger this drop.
40rules: [DropRule!]! @deprecated( reason: "No longer supported" )
41
42# The date at which this drop can start to occur.
43startDate: Time! @deprecated( reason: "No longer supported" )
44
45}