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