-
Notifications
You must be signed in to change notification settings - Fork 0
/
outline.txt
49 lines (38 loc) · 858 Bytes
/
outline.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
query {
info
summoner(region, ids): Summoner
match(region, matchId, game): (LeagueMatch | TFTMatch | LORMatch)
ranked(region, queue, tier, division, game): LeagueListDTO | LeagueEntryDTO
tournament(code)
featured_game(game)
}
mutuation {
registerTournamentProvider(region: Region, URL: String!): Int!
registerTournament(name: String, providerId: Int!): Int!
getTournamentCodes(count: Int!, tournamentId: Float!, params: TournamentCodeParams!)
updateTournamentCodeSettings(code: String!, params: TouranmentCodeupdateParams!)
}
type Summoner implements summoner {
and:
matchList(game)
activeMatch
champMastery {
score
byChamp(champId: Int?)
}
leagueEntry(game)
}
enum Game {
TFT,
League,
LOR
}
tournament {
match ids by code
match details
}
Query: {
info: {
__type: Object
}
}