INPUT_OBJECT

UpdateCompetitionInput

Update a Competition.

link GraphQL Schema definition

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