-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
1595 lines (1508 loc) · 38.4 KB
/
schema.graphql
File metadata and controls
1595 lines (1508 loc) · 38.4 KB
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
schema {
query: Query
mutation: Mutation
}
"""
Directs the executor to defer this fragment when the `if` argument is true or undefined.
"""
directive @defer(
"""Deferred when true or undefined."""
if: Boolean = true
"""Unique name"""
label: String
) on FRAGMENT_SPREAD | INLINE_FRAGMENT
directive @goField(forceResolver: Boolean, name: String, omittable: Boolean) on FIELD_DEFINITION | INPUT_FIELD_DEFINITION
directive @goModel(forceGenerate: Boolean, model: String, models: [String!]) on ENUM | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
directive @scope(scope: String!) on FIELD_DEFINITION
type CheatRecord implements Node {
cheatedAt: Time!
id: ID!
reason: String!
resolvedAt: Time
resolvedReason: String
user: User!
}
"""A connection to a list of items."""
type CheatRecordConnection {
"""A list of edges."""
edges: [CheatRecordEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""Identifies the total count of items in the connection."""
totalCount: Int!
}
"""An edge in a connection."""
type CheatRecordEdge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The item at the end of the edge."""
node: CheatRecord
}
"""
CheatRecordWhereInput is used for filtering CheatRecord objects.
Input was generated by ent.
"""
input CheatRecordWhereInput {
and: [CheatRecordWhereInput!]
"""cheated_at field predicates"""
cheatedAt: Time
cheatedAtGT: Time
cheatedAtGTE: Time
cheatedAtIn: [Time!]
cheatedAtLT: Time
cheatedAtLTE: Time
cheatedAtNEQ: Time
cheatedAtNotIn: [Time!]
"""user edge predicates"""
hasUser: Boolean
hasUserWith: [UserWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
not: CheatRecordWhereInput
or: [CheatRecordWhereInput!]
"""reason field predicates"""
reason: String
reasonContains: String
reasonContainsFold: String
reasonEqualFold: String
reasonGT: String
reasonGTE: String
reasonHasPrefix: String
reasonHasSuffix: String
reasonIn: [String!]
reasonLT: String
reasonLTE: String
reasonNEQ: String
reasonNotIn: [String!]
"""resolved_at field predicates"""
resolvedAt: Time
resolvedAtGT: Time
resolvedAtGTE: Time
resolvedAtIn: [Time!]
resolvedAtIsNil: Boolean
resolvedAtLT: Time
resolvedAtLTE: Time
resolvedAtNEQ: Time
resolvedAtNotIn: [Time!]
resolvedAtNotNil: Boolean
"""resolved_reason field predicates"""
resolvedReason: String
resolvedReasonContains: String
resolvedReasonContainsFold: String
resolvedReasonEqualFold: String
resolvedReasonGT: String
resolvedReasonGTE: String
resolvedReasonHasPrefix: String
resolvedReasonHasSuffix: String
resolvedReasonIn: [String!]
resolvedReasonIsNil: Boolean
resolvedReasonLT: String
resolvedReasonLTE: String
resolvedReasonNEQ: String
resolvedReasonNotIn: [String!]
resolvedReasonNotNil: Boolean
}
"""
CreateDatabaseInput is used for create Database object.
Input was generated by ent.
"""
input CreateDatabaseInput {
description: String
questionIDs: [ID!]
"""relation figure"""
relationFigure: String!
"""SQL schema"""
schema: String!
slug: String!
}
"""
CreateGroupInput is used for create Group object.
Input was generated by ent.
"""
input CreateGroupInput {
description: String
name: String!
scopeSetIDs: [ID!]
}
"""
CreatePointInput is used for create Point object.
Input was generated by ent.
"""
input CreatePointInput {
description: String
grantedAt: Time
points: Int
userID: ID!
}
"""
CreateQuestionInput is used for create Question object.
Input was generated by ent.
"""
input CreateQuestionInput {
"""Question category, e.g. 'query'"""
category: String!
databaseID: ID!
"""Question stem"""
description: String!
"""Question difficulty, e.g. 'easy'"""
difficulty: QuestionDifficulty
"""Reference answer"""
referenceAnswer: String!
submissionIDs: [ID!]
"""Question title"""
title: String!
"""
Only the users with this scope set can see the question. Empty means visible to everyone.
"""
visibleScope: String
}
"""
CreateScopeSetInput is used for create ScopeSet object.
Input was generated by ent.
"""
input CreateScopeSetInput {
description: String
groupIDs: [ID!]
scopes: [String!]
slug: String!
}
"""
CreateUserInput is used for create User object.
Input was generated by ent.
"""
input CreateUserInput {
avatar: String
cheatRecordIDs: [ID!]
email: String!
eventIDs: [ID!]
groupID: ID!
name: String!
pointIDs: [ID!]
submissionIDs: [ID!]
}
"""
Define a Relay Cursor type:
https://relay.dev/graphql/connections.htm#sec-Cursor
"""
scalar Cursor
type Database implements Node {
description: String
id: ID!
questions: [Question!]
"""relation figure"""
relationFigure: String!
"""SQL schema"""
schema: String!
slug: String!
structure: DatabaseStructure!
}
type DatabaseStructure {
tables: [DatabaseTable!]!
}
type DatabaseTable {
columns: [String!]!
name: String!
}
"""
DatabaseWhereInput is used for filtering Database objects.
Input was generated by ent.
"""
input DatabaseWhereInput {
and: [DatabaseWhereInput!]
"""description field predicates"""
description: String
descriptionContains: String
descriptionContainsFold: String
descriptionEqualFold: String
descriptionGT: String
descriptionGTE: String
descriptionHasPrefix: String
descriptionHasSuffix: String
descriptionIn: [String!]
descriptionIsNil: Boolean
descriptionLT: String
descriptionLTE: String
descriptionNEQ: String
descriptionNotIn: [String!]
descriptionNotNil: Boolean
"""questions edge predicates"""
hasQuestions: Boolean
hasQuestionsWith: [QuestionWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
not: DatabaseWhereInput
or: [DatabaseWhereInput!]
"""relation_figure field predicates"""
relationFigure: String
relationFigureContains: String
relationFigureContainsFold: String
relationFigureEqualFold: String
relationFigureGT: String
relationFigureGTE: String
relationFigureHasPrefix: String
relationFigureHasSuffix: String
relationFigureIn: [String!]
relationFigureLT: String
relationFigureLTE: String
relationFigureNEQ: String
relationFigureNotIn: [String!]
"""schema field predicates"""
schema: String
schemaContains: String
schemaContainsFold: String
schemaEqualFold: String
schemaGT: String
schemaGTE: String
schemaHasPrefix: String
schemaHasSuffix: String
schemaIn: [String!]
schemaLT: String
schemaLTE: String
schemaNEQ: String
schemaNotIn: [String!]
"""slug field predicates"""
slug: String
slugContains: String
slugContainsFold: String
slugEqualFold: String
slugGT: String
slugGTE: String
slugHasPrefix: String
slugHasSuffix: String
slugIn: [String!]
slugLT: String
slugLTE: String
slugNEQ: String
slugNotIn: [String!]
}
type Event implements Node {
id: ID!
payload: Map
triggeredAt: Time!
type: String!
user: User!
userID: ID!
}
"""A connection to a list of items."""
type EventConnection {
"""A list of edges."""
edges: [EventEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""Identifies the total count of items in the connection."""
totalCount: Int!
}
"""An edge in a connection."""
type EventEdge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The item at the end of the edge."""
node: Event
}
"""Ordering options for Event connections"""
input EventOrder {
"""The ordering direction."""
direction: OrderDirection! = ASC
"""The field by which to order Events."""
field: EventOrderField!
}
"""Properties by which Event connections can be ordered."""
enum EventOrderField {
TRIGGERED_AT
}
"""
EventWhereInput is used for filtering Event objects.
Input was generated by ent.
"""
input EventWhereInput {
and: [EventWhereInput!]
"""user edge predicates"""
hasUser: Boolean
hasUserWith: [UserWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
not: EventWhereInput
or: [EventWhereInput!]
"""triggered_at field predicates"""
triggeredAt: Time
triggeredAtGT: Time
triggeredAtGTE: Time
triggeredAtIn: [Time!]
triggeredAtLT: Time
triggeredAtLTE: Time
triggeredAtNEQ: Time
triggeredAtNotIn: [Time!]
"""type field predicates"""
type: String
typeContains: String
typeContainsFold: String
typeEqualFold: String
typeGT: String
typeGTE: String
typeHasPrefix: String
typeHasSuffix: String
typeIn: [String!]
typeLT: String
typeLTE: String
typeNEQ: String
typeNotIn: [String!]
"""user_id field predicates"""
userID: ID
userIDIn: [ID!]
userIDNEQ: ID
userIDNotIn: [ID!]
}
type Group implements Node {
createdAt: Time!
deletedAt: Time
description: String
id: ID!
name: String!
scopeSets: [ScopeSet!]
updatedAt: Time!
}
"""
GroupWhereInput is used for filtering Group objects.
Input was generated by ent.
"""
input GroupWhereInput {
and: [GroupWhereInput!]
"""created_at field predicates"""
createdAt: Time
createdAtGT: Time
createdAtGTE: Time
createdAtIn: [Time!]
createdAtLT: Time
createdAtLTE: Time
createdAtNEQ: Time
createdAtNotIn: [Time!]
"""deleted_at field predicates"""
deletedAt: Time
deletedAtGT: Time
deletedAtGTE: Time
deletedAtIn: [Time!]
deletedAtIsNil: Boolean
deletedAtLT: Time
deletedAtLTE: Time
deletedAtNEQ: Time
deletedAtNotIn: [Time!]
deletedAtNotNil: Boolean
"""description field predicates"""
description: String
descriptionContains: String
descriptionContainsFold: String
descriptionEqualFold: String
descriptionGT: String
descriptionGTE: String
descriptionHasPrefix: String
descriptionHasSuffix: String
descriptionIn: [String!]
descriptionIsNil: Boolean
descriptionLT: String
descriptionLTE: String
descriptionNEQ: String
descriptionNotIn: [String!]
descriptionNotNil: Boolean
"""scope_sets edge predicates"""
hasScopeSets: Boolean
hasScopeSetsWith: [ScopeSetWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
"""name field predicates"""
name: String
nameContains: String
nameContainsFold: String
nameEqualFold: String
nameGT: String
nameGTE: String
nameHasPrefix: String
nameHasSuffix: String
nameIn: [String!]
nameLT: String
nameLTE: String
nameNEQ: String
nameNotIn: [String!]
not: GroupWhereInput
or: [GroupWhereInput!]
"""updated_at field predicates"""
updatedAt: Time
updatedAtGT: Time
updatedAtGTE: Time
updatedAtIn: [Time!]
updatedAtLT: Time
updatedAtLTE: Time
updatedAtNEQ: Time
updatedAtNotIn: [Time!]
}
"""The builtin Map type"""
scalar Map
type Mutation {
"""
Create a new cheat record for a user.
If userID is not provided, the current user will be used.
For this case, you should have "me:write" scope.
If userID is provided, you should have "cheat_record:write" scope.
"""
createCheatRecord(reason: String!, userID: ID): CheatRecord!
"""Create a database."""
createDatabase(input: CreateDatabaseInput!): Database!
"""Create a new group."""
createGroup(input: CreateGroupInput!): Group
"""Create a new point record for a user."""
createPoint(input: CreatePointInput!): Point
"""Create a question."""
createQuestion(input: CreateQuestionInput!): Question!
"""Create a new scope set."""
createScopeSet(input: CreateScopeSetInput!): ScopeSet
"""Delete a database."""
deleteDatabase(id: ID!): Boolean!
"""Delete a group."""
deleteGroup(id: ID!): Boolean!
"""Delete a question."""
deleteQuestion(id: ID!): Boolean!
"""Delete a scope set."""
deleteScopeSet(id: ID!): Boolean!
"""Delete a user."""
deleteUser(id: ID!): Boolean!
"""
Impersonate a user.
Returns the token of the impersonated user.
You can then use the token to access the user's resources.
"""
impersonateUser(userID: ID!): String!
"""Logout from all the devices of the current user."""
logoutAll: Boolean!
"""Logout a user from all his devices."""
logoutUser(userID: ID!): Boolean!
"""Resolve a cheat record."""
resolveCheatRecord(cheatRecordID: ID!, reason: String!): Boolean!
"""Submit your answer to a question."""
submitAnswer(answer: String!, id: ID!): SubmissionResult!
"""Update a database."""
updateDatabase(id: ID!, input: UpdateDatabaseInput!): Database!
"""Update a group."""
updateGroup(id: ID!, input: UpdateGroupInput!): Group
"""Update the information of the current user."""
updateMe(input: UpdateUserInput!): User
"""Update a question."""
updateQuestion(id: ID!, input: UpdateQuestionInput!): Question!
"""Update a scope set."""
updateScopeSet(id: ID!, input: UpdateScopeSetInput!): ScopeSet
"""Update the information of a user."""
updateUser(id: ID!, input: UpdateUserInput!): User
}
"""
An object with an ID.
Follows the [Relay Global Object Identification Specification](https://relay.dev/graphql/objectidentification.htm)
"""
interface Node {
"""The id of the object."""
id: ID!
}
"""
Possible directions in which to order a list of items when provided an `orderBy` argument.
"""
enum OrderDirection {
"""Specifies an ascending order for a given `orderBy` argument."""
ASC
"""Specifies a descending order for a given `orderBy` argument."""
DESC
}
"""
Information about pagination in a connection.
https://relay.dev/graphql/connections.htm#sec-undefined.PageInfo
"""
type PageInfo {
"""When paginating forwards, the cursor to continue."""
endCursor: Cursor
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!
"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!
"""When paginating backwards, the cursor to continue."""
startCursor: Cursor
}
type Point implements Node {
description: String
grantedAt: Time!
id: ID!
points: Int!
user: User!
}
"""A connection to a list of items."""
type PointConnection {
"""A list of edges."""
edges: [PointEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""Identifies the total count of items in the connection."""
totalCount: Int!
}
"""An edge in a connection."""
type PointEdge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The item at the end of the edge."""
node: Point
}
"""Ordering options for Point connections"""
input PointOrder {
"""The ordering direction."""
direction: OrderDirection! = ASC
"""The field by which to order Points."""
field: PointOrderField!
}
"""Properties by which Point connections can be ordered."""
enum PointOrderField {
GRANTED_AT
}
"""
PointWhereInput is used for filtering Point objects.
Input was generated by ent.
"""
input PointWhereInput {
and: [PointWhereInput!]
"""description field predicates"""
description: String
descriptionContains: String
descriptionContainsFold: String
descriptionEqualFold: String
descriptionGT: String
descriptionGTE: String
descriptionHasPrefix: String
descriptionHasSuffix: String
descriptionIn: [String!]
descriptionIsNil: Boolean
descriptionLT: String
descriptionLTE: String
descriptionNEQ: String
descriptionNotIn: [String!]
descriptionNotNil: Boolean
"""granted_at field predicates"""
grantedAt: Time
grantedAtGT: Time
grantedAtGTE: Time
grantedAtIn: [Time!]
grantedAtLT: Time
grantedAtLTE: Time
grantedAtNEQ: Time
grantedAtNotIn: [Time!]
"""user edge predicates"""
hasUser: Boolean
hasUserWith: [UserWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
not: PointWhereInput
or: [PointWhereInput!]
"""points field predicates"""
points: Int
pointsGT: Int
pointsGTE: Int
pointsIn: [Int!]
pointsLT: Int
pointsLTE: Int
pointsNEQ: Int
pointsNotIn: [Int!]
}
type Query {
"""Get a cheat record by ID."""
cheatRecord(id: ID!): CheatRecord!
cheatRecords(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Filtering options for CheatRecords returned from the connection."""
where: CheatRecordWhereInput
): CheatRecordConnection!
"""Get a database by ID."""
database(id: ID!): Database!
databases: [Database!]!
"""
Get an event by ID.
If you have the "event:read" scope, you can get any event by ID;
otherwise, you can only get your own events.
"""
event(id: ID!): Event!
events(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Events returned from the connection."""
orderBy: EventOrder
"""Filtering options for Events returned from the connection."""
where: EventWhereInput
): EventConnection!
"""Get a group by ID."""
group(id: ID!): Group!
groups: [Group!]!
me: User!
"""Fetches an object given its ID."""
node(
"""ID of the object."""
id: ID!
): Node
"""Lookup nodes by a list of IDs."""
nodes(
"""The list of node IDs."""
ids: [ID!]!
): [Node]!
"""
Get a point grant by ID.
If you have the "point:read" scope, you can get any point grant by ID;
otherwise, you can only get your own point grants.
"""
pointGrant(id: ID!): Point!
points(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Points returned from the connection."""
orderBy: PointOrder
"""Filtering options for Points returned from the connection."""
where: PointWhereInput
): PointConnection!
"""Get a question by ID."""
question(id: ID!): Question!
"""Get the list of question categories."""
questionCategories: [String!]!
questions(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Questions returned from the connection."""
orderBy: QuestionOrder
"""Filtering options for Questions returned from the connection."""
where: QuestionWhereInput
): QuestionConnection!
"""Get the ranking."""
ranking(after: Cursor, filter: RankingFilter!, first: Int): RankingConnection!
"""Get a scope set by ID or slug."""
scopeSet(filter: ScopeSetFilter!): ScopeSet!
scopeSets: [ScopeSet!]!
"""
Get a submission by ID.
If you have the "submission:read" scope, you can get any submission by ID;
otherwise, you can only get your own submissions.
"""
submission(id: ID!): Submission!
submissions(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Submissions returned from the connection."""
orderBy: SubmissionOrder
"""Filtering options for Submissions returned from the connection."""
where: SubmissionWhereInput
): SubmissionConnection!
"""Get a user by ID."""
user(id: ID!): User!
users(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Users returned from the connection."""
orderBy: UserOrder
"""Filtering options for Users returned from the connection."""
where: UserWhereInput
): UserConnection!
}
type Question implements Node {
"""Have you tried to solve the question?"""
attempted: Boolean!
"""Question category, e.g. 'query'"""
category: String!
database: Database!
"""Question stem"""
description: String!
"""Question difficulty, e.g. 'easy'"""
difficulty: QuestionDifficulty!
id: ID!
"""Get the last submission for this question."""
lastSubmission: Submission
"""Reference answer"""
referenceAnswer: String!
referenceAnswerResult: SQLExecutionResult!
"""Have you solved the question?"""
solved: Boolean!
"""The statistics of the question, e.g. pass rate."""
statistics: QuestionStatistics!
submissions(
"""Returns the elements in the list that come after the specified cursor."""
after: Cursor
"""
Returns the elements in the list that come before the specified cursor.
"""
before: Cursor
"""Returns the first _n_ elements from the list."""
first: Int
"""Returns the last _n_ elements from the list."""
last: Int
"""Ordering options for Submissions returned from the connection."""
orderBy: SubmissionOrder
"""Filtering options for Submissions returned from the connection."""
where: SubmissionWhereInput
): SubmissionConnection!
"""Question title"""
title: String!
"""
List of your submissions for this question, ordered by submitted at descending.
"""
userSubmissions: [Submission!]!
"""
Only the users with this scope set can see the question. Empty means visible to everyone.
"""
visibleScope: String
}
"""A connection to a list of items."""
type QuestionConnection {
"""A list of edges."""
edges: [QuestionEdge]
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""Identifies the total count of items in the connection."""
totalCount: Int!
}
"""QuestionDifficulty is enum for the field difficulty"""
enum QuestionDifficulty {
easy
hard
medium
unspecified
}
"""An edge in a connection."""
type QuestionEdge {
"""A cursor for use in pagination."""
cursor: Cursor!
"""The item at the end of the edge."""
node: Question
}
"""Ordering options for Question connections"""
input QuestionOrder {
"""The ordering direction."""
direction: OrderDirection! = ASC
"""The field by which to order Questions."""
field: QuestionOrderField!
}
"""Properties by which Question connections can be ordered."""
enum QuestionOrderField {
CATEGORY
DIFFICULTY
}
type QuestionStatistics {
"""Number of users who attempted"""
attemptedUsers: Int!
"""Number of correct submissions"""
correctSubmissionCount: Int!
"""Number of users who passed"""
passedUsers: Int!
"""Total number of submissions"""
submissionCount: Int!
}
"""
QuestionWhereInput is used for filtering Question objects.
Input was generated by ent.
"""
input QuestionWhereInput {
and: [QuestionWhereInput!]
"""category field predicates"""
category: String
categoryContains: String
categoryContainsFold: String
categoryEqualFold: String
categoryGT: String
categoryGTE: String
categoryHasPrefix: String
categoryHasSuffix: String
categoryIn: [String!]
categoryLT: String
categoryLTE: String
categoryNEQ: String
categoryNotIn: [String!]
"""description field predicates"""
description: String
descriptionContains: String
descriptionContainsFold: String
descriptionEqualFold: String
descriptionGT: String
descriptionGTE: String
descriptionHasPrefix: String
descriptionHasSuffix: String
descriptionIn: [String!]
descriptionLT: String
descriptionLTE: String
descriptionNEQ: String
descriptionNotIn: [String!]
"""difficulty field predicates"""
difficulty: QuestionDifficulty
difficultyIn: [QuestionDifficulty!]
difficultyNEQ: QuestionDifficulty
difficultyNotIn: [QuestionDifficulty!]
"""database edge predicates"""
hasDatabase: Boolean
hasDatabaseWith: [DatabaseWhereInput!]
"""submissions edge predicates"""
hasSubmissions: Boolean
hasSubmissionsWith: [SubmissionWhereInput!]
"""id field predicates"""
id: ID
idGT: ID
idGTE: ID
idIn: [ID!]
idLT: ID
idLTE: ID
idNEQ: ID
idNotIn: [ID!]
not: QuestionWhereInput
or: [QuestionWhereInput!]
"""reference_answer field predicates"""
referenceAnswer: String
referenceAnswerContains: String
referenceAnswerContainsFold: String
referenceAnswerEqualFold: String
referenceAnswerGT: String
referenceAnswerGTE: String
referenceAnswerHasPrefix: String
referenceAnswerHasSuffix: String
referenceAnswerIn: [String!]
referenceAnswerLT: String
referenceAnswerLTE: String
referenceAnswerNEQ: String
referenceAnswerNotIn: [String!]