OBJECT
MatchcenterSchema
Matchcenter Application Schema Query Root
link GraphQL Schema definition
- type MatchcenterSchema {
- # List of all feeds
- FeedType] : [
- # List of all competitions
- CompetitionType] : [
- # Get competition by slug name
- #
- # Arguments
- # slug: Competition slug retrieved from field competitionSlug
- String!): CompetitionType ( :
- # Arguments
- # id: Mongo object ID of the sport event: ex.
- # 5ff351b8fb3e085ace604faf
- String!): SportEventType ( :
- # Arguments
- # ids: List of mongo object IDs of the sport events: ex.
- # 5ff351b8fb3e085ace604faf
- String]): [SportEventType] ( : [
- # Arguments
- # groupId: Sport event group Id
- String!): [SportEventType] ( :
- # Arguments
- # date: Date in the format 2020-01-02
- # status: Status of the sport event: ex. live, not_started,
- # closed, ended etc.
- String!, : String): [SportEventType] ( :
- # Arguments
- # seasonId: SR id of the season: ex. sr:season:79153
- # roundKeyword: SR key word: ex. sr_season_435365_round_of_32
- (
- String!, :
- String! :
- ): [SportEventType]
- # Arguments
- # seasonId: SR id of the season: ex. sr:season:79153
- # groupId: SR id of the competition group: ex. sr:league:53640
- # rangeFrom: first item of standings to show
- # rangeTo: last item of standings to show
- (
- String!, :
- String, :
- Int, :
- Int :
- ): [StandingType]
- # Arguments
- # id: SR id of the sport event. ex. sr:sport_event:24750634
- String!): [TimeEventType] ( :
- # Arguments
- # id: SR id of the sport event. ex. sr:sport_event:24750634
- # pagination: Pagination arguments with default values offset: 0,
- # first:10
- (
- String!, :
- PaginationArg :
- ): PaginatedTimeEventType
- # Arguments
- # search: Regex search matching tournament names included in the
- # sport event objects
- # pagination: Pagination arguments with default values offset: 0,
- # first:10
- (
- String, :
- PaginationArg :
- ): PaginatedSportEventType
- # Arguments
- # competitionId: SR competition id: ex. sr:competition:132
- # month: Month text with the following format: 2021-01
- (
- String, :
- String :
- ): [SportEventType]
- # Arguments
- # competitionId: (Optional) SR competition id: ex.
- # sr:competition:132
- # sportType: (Optional) sport type from the given list: soccer,
- # basketball, handball, tennis, volleyball
- # month: Month text with the following format: 2021-01
- (
- String, :
- String, :
- String :
- ): [SportEventType]
- # Arguments
- # id: Mongo object ID of sport event: ex.
- # 5ff351b8fb3e085ace604faf
- # after: (Optional) Mongo object ID of the last received time
- # event command: ex. 5ff357ceb477df76aa4db99b
- # filter: (Optional) filter results by event tag keyword: ex.
- # score_change, red_card, foul etc.
- (
- String!, :
- String, :
- String :
- ): [TimeEventCommandType]
- # Arguments
- # id: Mongo object ID of sport event: ex.
- # 5ff351b8fb3e085ace604faf
- # after: (Optional) Mongo object ID of the last received time
- # event command: ex. 5ff357ceb477df76aa4db99b
- # filter: (Optional) filter results by event tag keyword: ex.
- # score_change, red_card, foul etc.
- # pagination: [Not documented]
- (
- String!, :
- String, :
- String, :
- PaginationArg :
- ): PaginatedTimeEventCommandType
- }
link Require by
This element is not required by anyone