-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.gql
389 lines (351 loc) · 6.34 KB
/
schema.gql
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type BanListDeclaration {
forbidden: [Int!]!
limit: [Int!]!
semiLimit: [Int!]!
}
type Card {
_setcode: Int!
alias: Int!
atk: Int!
attribute: CardAttribute!
category: Int!
cropperItem: CardCropperItem
def: Int!
hasCropperItem: Boolean!
id: Int!
isExtra: Boolean!
level: Int!
monsterType: [MonsterCardType!]!
ot: Int!
race: CardRace!
rawType: Int!
text: Text!
trapSpellType: TrapSpellCardType!
type: CardType!
}
enum CardAttribute {
Dark
Divine
Earth
Fire
Light
None
Water
Wind
}
input CardCropperDataInput {
cardId: Int!
height: Int!
width: Int!
x: Int!
y: Int!
}
type CardCropperItem {
cardId: Int!
createdAt: DateTime!
height: Int!
id: Int!
updatedAt: DateTime!
width: Int!
x: Int!
y: Int!
}
enum CardRace {
Aqua
Beast
BeastWarrior
CreatorGod
Cybers
Dinosaur
Divine
Dragon
Fairy
Fiend
Fish
Insect
Machine
None
Plant
Psycho
Pyro
Reptile
Rock
SeaSerpent
SpellCaster
Thunder
Warrior
WindBeast
Wyrm
Zombie
}
type CardSuggestion {
id: Int!
index: Int!
name: String!
}
enum CardType {
Monster
Spell
Trap
}
type CardUsage {
card: Card!
count: Float!
}
type Championship {
banList: String!
createdAt: DateTime!
id: Int!
joinUrlCode: String!
monitorUrlCode: String!
name: String!
participantCount: Int!
participants: [ChampionshipParticipant!]!
shareBanLists: Boolean!
shareCardCount: Boolean!
type: ChampionshipType!
updatedAt: DateTime!
}
type ChampionshipParticipant {
createdAt: DateTime!
extra: [Int!]!
id: Int!
main: [Int!]!
name: String!
side: [Int!]!
teamName: String
updatedAt: DateTime!
}
enum ChampionshipType {
Individual
Team
}
input CreateChampionshipArgs {
banList: String!
shareBanLists: Boolean!
shareCardCount: Boolean!
title: String!
type: ChampionshipType!
}
type CreateChampionshipResult {
joinUrl: String!
monitorUrl: String!
}
"""
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
"""
scalar DateTime
type Deck {
createdAt: DateTime!
extra: [Card!]!
extraIds: [Int!]!
id: Int!
main: [Card!]!
mainIds: [Int!]!
recognizedDeckTags: [String!]!
recognizedName: String!
recognizedTags: [String!]!
side: [Card!]!
sideIds: [Int!]!
titleCard: DeckTitleCard
updatedAt: DateTime!
}
type DeckTitleCard {
card: Card!
cardId: Int!
createdAt: DateTime!
id: Int!
name: String!
updatedAt: DateTime!
}
input DeckTitleCardInput {
cardId: Int!
deckName: String!
}
type DeckType {
id: Int!
name: String!
}
type DeckUsage {
count: Int!
deckName: String!
titleCard: Card
}
type EdoText {
desc: String!
id: Int!
name: String!
str1: String!
str2: String!
str3: String!
str4: String!
str5: String!
str6: String!
str7: String!
str8: String!
str9: String!
str10: String!
str11: String!
str12: String!
str13: String!
str14: String!
str15: String!
str16: String!
}
type ExecutionResult {
errors: [String!]!
succeeded: Boolean!
}
type Match {
away: PlayerDeck!
createdAt: DateTime!
finishedAt: DateTime!
home: PlayerDeck!
id: Int!
isRandomMatch: Boolean!
matchRule: MatchRule!
players: [Player!]!
roundCount: Int!
rounds: [Round!]!
startedAt: DateTime!
type: MatchType!
updatedAt: DateTime!
winner: Player
}
input MatchFilter {
banLists: [String!]!
includeMatches: Boolean!
includeNormalMatches: Boolean!
includeSingles: Boolean!
includeTierMatches: Boolean!
}
type MatchRule {
banListDate: String!
drawCount: Int!
duelRule: Int!
id: Int!
isTCG: Boolean!
mode: Int!
preventCheckDeck: Boolean!
preventShuffleDeck: Boolean!
rule: Int!
startHand: Int!
startLifePoint: Int!
timeLimit: Int!
}
enum MatchType {
Athletic
Entertain
Normal
}
enum MonsterCardType {
Effect
Fusion
Link
Normal
Pendulum
Ritual
Synchro
Xyz
}
type Mutation {
createChampionship(data: CreateChampionshipArgs!): CreateChampionshipResult!
deleteParticipant(participantId: Int!): ExecutionResult!
generateDeckRecipeImage(extraDeck: [Int!]!, mainDeck: [Int!]!, sideDeck: [Int!]!): String!
registerDeckTitleCards(input: [DeckTitleCardInput!]!): [DeckTitleCard!]!
saveCropperData(input: [CardCropperDataInput!]!): [CardCropperItem!]!
submitChampionshipParticipants(championshipId: Int!, participants: [SubmitParticipantsArgsInput!]!, teamName: String): ExecutionResult!
}
type Player {
createdAt: DateTime!
id: Int!
ip: String!
lang: String!
name: String!
pos: Int!
updatedAt: DateTime!
}
type PlayerDeck {
deck: Deck!
player: Player!
}
type Query {
availableBanLists: [String!]!
banList(title: String!): BanListDeclaration!
banLists: [String!]!
card(id: Int!): Card
cardCount: Int!
cardSuggestions(count: Int!, query: String!): [CardSuggestion!]!
cards(ids: [Int!]): [Card!]!
championship(id: String!): Championship
cropperItem(id: Int!): CardCropperItem
deck(id: Int!): Deck
deckTitleCards: [DeckTitleCard!]!
deckTypes: [DeckType!]!
indexedCard(index: Int!): Card
match(id: Int!): Match
matchCount: Int!
matches(after: Int, count: Int!, filter: MatchFilter): [Match!]!
topUsageCards(count: Int!): [CardUsage!]!
topUsageDecks(count: Int!): [DeckUsage!]!
usedCards(deckName: String!): [Card!]!
winRate(count: Int = 10): [WinRate!]!
}
type Round {
createdAt: DateTime!
finishedAt: DateTime!
id: Int!
no: Int!
playerDecks: [PlayerDeck!]!
startedAt: DateTime!
updatedAt: DateTime!
}
input SubmitParticipantsArgsInput {
deckFile: Upload!
name: String!
}
type Subscription {
cardUsageListUpdated: [CardUsage!]!
matchCountUpdated: Int!
newMatchCreated: Match!
}
type Text {
desc: String!
id: Int!
name: String!
str1: String!
str2: String!
str3: String!
str4: String!
str5: String!
str6: String!
str7: String!
str8: String!
str9: String!
str10: String!
str11: String!
str12: String!
str13: String!
str14: String!
str15: String!
str16: String!
}
enum TrapSpellCardType {
Continuous
Counter
Equip
Field
Normal
QuickPlay
Ritual
}
"""The `Upload` scalar type represents a file upload."""
scalar Upload
type WinRate {
deckName: String!
rate: Float!
titleCard: Card
}