INPUT_OBJECT

CreateDropCampaignInput

CreateDropCampaignInput has the fields necessary to create a campaign for an RBAC organization.

link GraphQL Schema definition

1input CreateDropCampaignInput {
4
2# The redirect URL where a user can link their account.
3accountLinkURL: String!
8
5# The type of a campaign defines what type of drops are allowed to be added to the
6# campaign.
7campaignType: CampaignType
11
9# The description of this campaign.
10description: String!
14
12# The URL that links to the details / marketing page for this drop.
13detailsURL: String!
17
15# The date at which this campaign ends and all contained drops end at the latest.
16endAt: Time!
20
18# The game associated with this campaign.
19gameID: ID!
23
21# The name of the campaign.
22name: String!
27
24# This is the Organization ID (RBAC) to determine access / ownership of the
25# campaign and attached drops.
26ownerID: ID!
31
28# The date at which this campaign starts and all contained drops start the
29# earliest.
30startAt: Time!
32}