INPUT_OBJECT
UpdateCompetitionInput
Update a Competition.
link GraphQL Schema definition
1 input UpdateCompetitionInput { 4 2 # Banner image for the competition event page. 3 : String 8 5 # This is the amount of time (in minutes) available for participants to check-in 6 # once competition startAt has passed. 7 : Int 11 9 # Long form description of the competition. 10 : String 14 12 # The time the competition is scheduled to end. 13 : Time 17 15 # The predefined structure of phases and lobbies. 16 : FormatType 20 18 # The game being played in the competition>. 19 : ID 23 21 # ID of the Competition we want to update. 22 : ID! 26 24 # Primary artwork for the competition. 25 : String 29 27 # Specific format restrictions for a competition. 28 : UpdateCompetitionLeaderboardDetailsInput 32 30 # The name of the competition. 31 : String 36 33 # The participant-facing points of contact for the competition that only 34 # registered participants can see. 35 : UpdateCompetitionContactInfoInput 40 37 # Long form text block description that explains the prizing for the competition 38 # and will be converted to Markdown client-side. 39 : String 43 41 # The public points of contact for the competition that anyone can see. 42 : UpdateCompetitionContactInfoInput 46 44 # The time the competition is scheduled to end registration. 45 : Time 49 47 # The maximum number of players in a REGISTERED state. 48 : Int 53 50 # Long form text block description that explains the rules for the competition and 51 # will be converted to Markdown client-side. 52 : String 56 54 # The time the competition is scheduled to start. 55 : Time 59 57 # The state of the tournament. 58 : CompetitionState 62 60 # The size of a team when ParticipantType is Team. 61 : Int 65 63 # Link URL to any additional terms and conditions. 64 : String 66 }