OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Returns the authenticated user
- : User
- # Returns an entrant given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID!): Entrant
- # Returns an event given its id or slug
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): Event
- # Returns a league given its id or slug
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): League
- # Paginated, filterable list of leagues
- #
- # Arguments
- # query: [Not documented]
- (: LeagueQuery!): LeagueConnection
- # Returns a participant given its id
- #
- # Arguments
- # id: [Not documented]
- # isAdmin: [Not documented]
- (: ID!, : Boolean): Participant
- # Returns a phase given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID): Phase
- # Returns a phase group given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID): PhaseGroup
- # Returns a player given an id
- #
- # Arguments
- # id: [Not documented]
- (: ID!): Player
- # Returns a phase seed given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID): Seed
- # Returns a set given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID!): Set
- # A shop entity
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): Shop
- # Returns an stream given its id
- #
- # Arguments
- # id: [Not documented]
- (: ID!): Streams
- # Returns all the stream queues for a given tournament
- #
- # Arguments
- # tournamentId: [Not documented]
- # includePlayerStreams: [Not documented]
- (: ID!, : Boolean): [StreamQueue]
- # Returns a team given its id
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- # inviteCode: [Not documented]
- (: ID, : String, : String): Team
- # Returns a tournament given its id or slug
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): Tournament
- # Paginated, filterable list of tournaments
- #
- # Arguments
- # query: [Not documented]
- (: TournamentQuery!): TournamentConnection
- # Returns a user given a user slug of the form user/abc123, or id
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): User
- # Returns a videogame given its id
- #
- # Arguments
- # id: [Not documented]
- # slug: [Not documented]
- (: ID, : String): Videogame
- # Returns paginated list of videogames matching the search criteria.
- #
- # Arguments
- # query: [Not documented]
- (: VideogameQuery!): VideogameConnection
- }
link Require by
This element is not required by anyone