-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.graphql
More file actions
3653 lines (3357 loc) · 76 KB
/
schema.graphql
File metadata and controls
3653 lines (3357 loc) · 76 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
enum Action {
ACCEPT_EVENT_INVITE
ADD_COMPETITION_JURY
ADD_COMPETITION_MEMBER
ADD_EVENT_COMPETITION
ADD_EVENT_MEMBER
AWARD_BADGE
CREATE_BLOG_ARTICLE
CREATE_COMMENT
CREATE_COMPETITION
CREATE_COMPETITION_RULE_AGREEMENT
CREATE_COMPETITION_TEAM_REQUEST
CREATE_COMPETITION_STAGE
CREATE_DATASET
CREATE_DATASET_COMPETITION
CREATE_DATASET_MEMBER
CREATE_DATASET_VERSION
CREATE_EVENT
CREATE_EVENT_RULE_AGREEMENT
CREATE_FORUM
CREATE_OAUTH_2_CONFIG
CREATE_ORGANIZATION
CREATE_PROJECT_VERSION_APPROVAL
CREATE_SUBJECT_SUBSCRIPTION
CREATE_SUBMISSION_VERSION
CREATE_TAG
CREATE_TOPIC
CREATE_USE_CASE_VERSION
CREATE_WORKSPACE
CREATE_WORKSPACE_VERSION
DELETE_BLOG_ARTICLE
DELETE_COMMENT
DELETE_COMPETITION
DELETE_COMPETITION_TEAM_REQUEST
DELETE_DATASET
DELETE_DATASET_COMPETITION
DELETE_DATASET_MEMBER
DELETE_DATASET_VERSION
DELETE_EVENT
DELETE_FORUM
DELETE_OAUTH_2_CONFIG
DELETE_ORGANIZATION
DELETE_PROJECT_VERSION_APPROVAL
DELETE_SUBJECT_SUBSCRIPTION
DELETE_TAG
DELETE_TOPIC
DELETE_USER
DELETE_WORKSPACE
DELETE_WORKSPACE_VERSION
FETCH_WEBSITE_METADATA
JOIN_COMPETITION
JOIN_EVENT
MANAGE_ENTITY_BAN
MANAGE_EVENT_INVITE_CODE
PUBLISH_DATASET_VERSION
PUBLISH_VOTE
READ_ACTIVITY_TRACKER
READ_COMMENT
READ_COMPETITION
READ_COMPETITION_MEMBERSHIP
READ_COMPETITION_PRIVATE_APPROVAL
READ_COMPETITION_RULE
READ_COMPETITION_RULE_AGREEMENT
READ_COMPETITION_SCORING_CRITERION
READ_DATASET
READ_DATASET_MEMBER
READ_DATASET_VERSION
READ_DATASET_VERSION_FILE
READ_EVENT
READ_EVENT_COMPETITION
READ_EVENT_INVITATION
READ_EVENT_MEMBERSHIP
READ_EVENT_RULE
READ_EVENT_RULE_AGREEMENT
READ_OAUTH_2_CONFIG
READ_OAUTH_2_CONFIG_SECRET
READ_PROJECT_VERSION
READ_PROJECT_VERSION_APPROVAL
READ_PROJECT_VERSION_APPROVAL_SCORE
READ_PROJECT_VERSION_EVALUATION
READ_PROJECT_VERSION_FILE
READ_SUBJECT_SUBSCRIPTION
READ_SUBMISSION
READ_TOPIC
READ_USER_EMAIL
READ_USER_NOTIFICATIONS
READ_USER_PERMISSIONS
READ_WORKSPACE
READ_WORKSPACE_VERSION
REEVALUATE_COMPETITION
REMOVE_COMPETITION_JURY
REMOVE_COMPETITION_MEMBER
REMOVE_COMPETITION_STAGE
REMOVE_EVENT_COMPETITION
REMOVE_EVENT_MEMBER
REMOVE_ORGANIZATION_MEMBER
SEND_COMPETITION_TEAM_REQUEST_MESSAGE
SET_COMPETITION_ORDERING_PRIORITY
SET_EVENT_ORDERING_PRIORITY
TRANSFER_COMPETITION_OWNERSHIP
TRANSFER_DATASET_OWNERSHIP
TRANSFER_EVENT_OWNERSHIP
TRANSFER_ORGANIZATION_OWNERSHIP
UPDATE_AGENDA
UPDATE_BLOG_ARTICLE
UPDATE_COMMENT
UPDATE_COMPETITION
UPDATE_COMPETITION_MEMBER
UPDATE_COMPETITION_TEAM_REQUEST
UPDATE_COMPETITION_STAGE
UPDATE_DATASET
UPDATE_DATASET_MEMBER
UPDATE_DATASET_VERSION
UPDATE_EVENT
UPDATE_FORUM
UPDATE_OAUTH_2_CONFIG
UPDATE_ORGANIZATION
UPDATE_ORGANIZATION_MEMBERSHIP
UPDATE_PROJECT_VERSION
UPDATE_PROJECT_VERSION_APPROVAL
UPDATE_PROJECT_VERSION_FILE
UPDATE_TOPIC
UPDATE_USER
UPDATE_WORKSPACE
UPLOAD_FILES
}
type Activity {
date: NaiveDate!
points: Int!
level: Int!
}
type ActivityConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [ActivityEdge!]!
"""
A list of nodes.
"""
nodes: [Activity!]!
}
"""
An edge in a connection.
"""
type ActivityEdge {
"""
The item at the end of the edge
"""
node: Activity!
"""
A cursor for use in pagination
"""
cursor: String!
}
enum ActivityKind {
ALL
COMPETITION
DATASET
WORKSPACE
}
enum ActivityVisibility {
"""
Activity is only visible to invited members.
"""
MEMBERS
"""
Activity is visible by everyone, even unauthenticated users.
"""
UNAUTHENTICATED
"""
Activity is visible by every authenticated user.
"""
AUTHENTICATED
}
enum ApprovalFilter {
HAS_ANY
HAS_MINE
AWAITING_ANY
AWAITING_MINE
}
enum ArchiveKind {
TAR
ZIP
}
enum Badge {
TEST
"""
Clinical Trial Optimization Competition 2024 by Ingenii First Prize
"""
INGENII_2024_FIRST
"""
Clinical Trial Optimization Competition 2024 by Ingenii Second Prize
"""
INGENII_2024_SECOND
"""
Clinical Trial Optimization Competition 2024 by Ingenii Third Prize
"""
INGENII_2024_THIRD
"""
Clinical Trial Optimization Competition 2024 by Ingenii Participant
"""
INGENII_2024_OTHERS
"""
Clinical Trial Optimization Competition 2024 by Ingenii Special Prize
"""
INGENII_2024_SPECIAL
"""
BIG Quantum Hackathon Sports Edition by QuantX & Aqora, May 2024, Paris (FR)
"""
PARIS_2024_WINNERS
"""
BIG Quantum Hackathon Sports Edition by QuantX & Aqora, May 2024, Paris (FR)
"""
PARIS_2024_HACKERS
"""
BIG Quantum Hackathon by the Chicago Quantum Exchange & QuantX, Sept 2023, Chicago (USA)
"""
CHICAGO_2023
"""
ICTP - Quantinuum Quantum Hackathon, April 2023, Trieste (IT)
"""
TRIESTE_2023
"""
BIG QC-AI-HPC Hackathon by QuantX, March 2023, Paris (FR)
"""
PARIS_2023
"""
Quantum Hackathon by QuantX, October 2022, Grenoble (FR)
"""
GRENOBLE_2022
"""
Quantum Hackathon by Québec Quantique & QuantX, June 2022, Montreal (CAN)
"""
MONTREAL_2022
"""
BIG Quantum Hackathon by QuantX, October 2021, Paris (FR)
"""
BIG_PARIS_2021
"""
Quantum hackathon by QuantX, March 2021, Paris (FR)
"""
PARIS_2021
"""
Badge awarded upon first submission
"""
QUANTUM_PIONEER
"""
Hackathon Champion - Q2B Silicon Valley 2024
"""
Q2B2024_GOLD
"""
Hackathon Innovator - 2nd Place Team - Q2B Silicon Valley 2024
"""
Q2B2024_SILVER
"""
Hackathon Trailblazer - 3rd Place Team - Q2B Silicon Valley 2024
"""
Q2B2024_BRONZE
"""
On-Site Participant - Q2B Hackathon 2024
"""
Q2B2024_ONSITE
"""
Global Participant - Q2B Hackathon 2024
"""
Q2B2024_REMOTE
"""
Malicious Login Detection 2024 by NovaceneAI – Winner
"""
NOVACENE_2024
"""
QInnovision Challenge 2024-2025 Winner!
"""
QINNOVISION_2025_WINNER
"""
QInnovision Challenge 2024-2025 Finalist!
"""
QINNOVISION_2025_FINALIST
"""
Quantum Trading Oracle – 1st Place
"""
QUANTUM_SIGNALS_LOB_2025_FIRST
"""
Schrödinger’s Trader – 2nd Place - Second Prize
"""
QUANTUM_SIGNALS_LOB_2025_SECOND
"""
QML Summer School 2025
"""
QML_SUMMER_SCHOOL_2025
"""
Winner of the EPRI 2025 Challenge
"""
EPRI2025_FIRST
"""
Runner-Up of the EPRI 2025 Challenge
"""
EPRI2025_SECOND
"""
Finalist of the EPRI 2025 Challenge
"""
EPRI2025_THIRD
"""
Winner GIC-2025 Wells Fargo Challenge
"""
GIC2025_WELLS_FARGO
"""
Winner of GIC-2025 JPMorgan Chase Challenge
"""
GIC2025_JPMC
"""
Winner of GIC-2025 The World Bank Challenge
"""
GIC2025_WORLD_BANK
"""
Winner of GIC-2025 MITRE Challenge
"""
GIC2025_MITRE
"""
Winner of GIC-2025 NeuroQuantum Nexus Challenge
"""
GIC2025_NEURO_QUANTUM
"""
Bradford Clinical Trial Optimization (Ingenii)
"""
BRADFORD_CLINICAL_TRIAL_OPTIMIZATION
"""
Bradford Bring Your Own Use Case (Quantinuum)
"""
BRADFORD_BRING_YOUR_OWN_USE_CASE
"""
Bradford Quantum Brush
"""
BRADFORD_QUANTUM_BRUSH
"""
Bradford Project Eleven Post-Quantum Cryptography
"""
BRADFORD_PROJECT_ELEVEN_POST_QUANTUM_CRYPTOGRAPHY
"""
PushQuantum Haiqu Early Fault-Tolerant Circuits
"""
PUSHQUANTUM_HAIQU_EARLY_FAULT_TOLERANT_CIRCUITS
"""
PushQuantum Qoro Quantum Molecular Detective
"""
PUSHQUANTUM_QORO_QUANTUM_MOLECULAR_DETECTIVE
"""
PushQuantum Quandela Quantum Option Pricing
"""
PUSHQUANTUM_QUANDELA_QUANTUM_OPTION_PRICING
"""
Qiskit Fall Fest Winner – Color Code
"""
QFF_COLOR_CODE
"""
Qiskit Fall Fest Winner – Quantum Random Walk Option Pricing
"""
QFF_QUANTUM_RANDOM_WALK
"""
Qiskit Fall Fest Winner – Quantum Machine Learning Option Pricing
"""
QFF_QUANTUM_MACHINE_LEARNING
"""
Big Quantum Hackathon Qatar 2025 – Winner
"""
BQH_QATAR_WINNER_2025
"""
Big Quantum Hackathon Qatar 2025 – Finalist
"""
BQH_QATAR_FINALIST_2025
"""
Hack The Horizon – Winner Team
"""
HTH_WINNER_TEAM
"""
Hack The Horizon – Most Innovative Idea
"""
HTH_MOST_INNOVATIVE_IDEA
"""
Hack The Horizon – Most Impactful Team
"""
HTH_MOST_IMPACTFUL_TEAM
"""
Hack The Horizon – Participation Badge
"""
HTH_PARTICIPATION
"""
Q-volution Hackathon 2026 -- Energy Grid Optiminization
"""
QVOLUTION_26_ENERGY
"""
Q-volution Hackathon 2026 -- Solving Linear Differential Equations
"""
QVOLUTION_26_LINEAR_DIFF
"""
Q-volution Hackathon 2026 -- Quantum for Good
"""
QVOLUTION_26_QUANTUM_FOR_GOOD
"""
Q-volution Hackathon 2026 -- Option Pricing in Finance
"""
QVOLUTION_26_FINANCE
UNKNOWN
}
type Blog implements ForumOwner {
id: ID!
slug: String!
forum: Forum!
forumOwnerKind: ForumOwnerKind!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
}
type BlogArticle implements Node {
shortDescription: String!
blurHash: String
seoTitle: String
seoDescription: String
imageAlt: String
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
image: Url
authors(after: String, before: String, first: Int, last: Int): BlogArticleAuthorConnection!
topic: Topic!
title: String!
slugLower: String!
content: String
createdAt: DateTime!
}
type BlogArticleAuthorConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [BlogArticleAuthorConnectionEdge!]!
"""
A list of nodes.
"""
nodes: [Entity!]!
}
"""
An edge in a connection.
"""
type BlogArticleAuthorConnectionEdge {
"""
The item at the end of the edge
"""
node: Entity!
"""
A cursor for use in pagination
"""
cursor: String!
}
type BlogArticleConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [BlogArticleEdge!]!
"""
A list of nodes.
"""
nodes: [BlogArticle!]!
}
"""
An edge in a connection.
"""
type BlogArticleEdge {
"""
The item at the end of the edge
"""
node: BlogArticle!
"""
A cursor for use in pagination
"""
cursor: String!
}
type Comment implements Votable & Node {
votes: Int!
createdAt: DateTime!
edited: Boolean!
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
content: String!
author: User!
topic: Topic!
parent: Comment
numChildren: Int!
voted: EntityVote
voterCount: Int!
voters(after: String, before: String, first: Int, last: Int): VotersConnection!
children(after: String, before: String, first: Int, last: Int, order: VotableOrder): CommentConnection!
}
type CommentConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CommentEdge!]!
"""
A list of nodes.
"""
nodes: [Comment!]!
}
"""
An edge in a connection.
"""
type CommentEdge {
"""
The item at the end of the edge
"""
node: Comment!
hotness: Float!
"""
A cursor for use in pagination
"""
cursor: String!
}
type Competition implements ForumOwner & Subscribable & Node & Taggable {
slug: String!
title: String!
shortDescription: String!
createdAt: DateTime!
visibility: ActivityVisibility!
id: ID!
forumOwnerKind: ForumOwnerKind!
description: String
isPrivate: Boolean!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
host: Entity!
useCase: UseCase!
latestRule: CompetitionRule!
rules(after: String, before: String, first: Int, last: Int): CompetitionRuleConnection!
entityRuleAgreements(after: String, before: String, first: Int, last: Int, entity: UsernameOrID, latest: Boolean): CompetitionRuleAgreementConnection!
banner: Url
thumbnail: Url
leaderboard(after: String, before: String, first: Int, last: Int, stage: Int): SubmissionRankingConnection!
currentStage: CompetitionStage!
stage(stage: Int): CompetitionStage
stages(after: String, before: String, first: Int, last: Int, hasLeaderboard: Boolean, requiresApproval: Boolean): CompetitionStageConnection!
hasLeaderboard: Boolean!
requiresApproval: Boolean!
showMetric: Boolean! @deprecated(reason: "Use currentStage.showMetric instead")
submissions(after: String, before: String, first: Int, last: Int, entityId: ID, approvalFilter: ApprovalFilter, stage: Int): SubmissionConnection!
hasSubmissions: Boolean!
submission(entity: UsernameOrID): Submission
forum: Forum!
timeline: Timeline
membership(entity: UsernameOrID): CompetitionMembership
members(after: String, before: String, first: Int, last: Int, search: String): CompetitionMembershipConnection!
tags(after: String, before: String, first: Int, last: Int): TaggableConnection!
entitySubscription(entity: UsernameOrID): SubjectSubscription
jury(after: String, before: String, first: Int, last: Int): CompetitionJuryConnection!
datasets(after: String, before: String, first: Int, last: Int): CompetitionDatasetConnection!
teamRequests(after: String, before: String, first: Int, last: Int, isOrganization: Boolean): CompetitionTeamRequestConnection!
}
type CompetitionConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionEdge!]!
"""
A list of nodes.
"""
nodes: [Competition!]!
}
type CompetitionDatasetConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionDatasetConnectionEdge!]!
"""
A list of nodes.
"""
nodes: [Dataset!]!
}
"""
An edge in a connection.
"""
type CompetitionDatasetConnectionEdge {
"""
The item at the end of the edge
"""
node: Dataset!
"""
A cursor for use in pagination
"""
cursor: String!
}
"""
An edge in a connection.
"""
type CompetitionEdge {
"""
The item at the end of the edge
"""
node: Competition!
"""
A cursor for use in pagination
"""
cursor: String!
}
type CompetitionJuryConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionJuryEdge!]!
"""
A list of nodes.
"""
nodes: [Entity!]!
}
"""
An edge in a connection.
"""
type CompetitionJuryEdge {
"""
The item at the end of the edge
"""
node: Entity!
selectedOn: DateTime!
"""
A cursor for use in pagination
"""
cursor: String!
}
type CompetitionMembership implements Node {
kind: CompetitionMembershipKind!
createdAt: DateTime!
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
entity: Entity!
asEntity: Entity!
competition: Competition!
ruleAgreements(after: String, before: String, first: Int, last: Int, latest: Boolean): CompetitionRuleAgreementConnection!
teamRequest: CompetitionTeamRequest
}
type CompetitionMembershipConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionMembershipEdge!]!
"""
A list of nodes.
"""
nodes: [CompetitionMembership!]!
}
"""
An edge in a connection.
"""
type CompetitionMembershipEdge {
"""
The item at the end of the edge
"""
node: CompetitionMembership!
"""
A cursor for use in pagination
"""
cursor: String!
}
enum CompetitionMembershipKind {
HOST
PARTICIPANT
}
type CompetitionRule implements Node {
createdAt: DateTime!
id: ID!
text: String!
competition: Competition!
entityAgreement(entity: UsernameOrID): CompetitionRuleAgreement
}
type CompetitionRuleAgreement implements Node {
createdAt: DateTime!
id: ID!
competitionRule: CompetitionRule!
entity: Entity!
}
type CompetitionRuleAgreementConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionRuleAgreementEdge!]!
"""
A list of nodes.
"""
nodes: [CompetitionRuleAgreement!]!
}
"""
An edge in a connection.
"""
type CompetitionRuleAgreementEdge {
"""
The item at the end of the edge
"""
node: CompetitionRuleAgreement!
"""
A cursor for use in pagination
"""
cursor: String!
}
type CompetitionRuleConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionRuleEdge!]!
"""
A list of nodes.
"""
nodes: [CompetitionRule!]!
}
"""
An edge in a connection.
"""
type CompetitionRuleEdge {
"""
The item at the end of the edge
"""
node: CompetitionRule!
"""
A cursor for use in pagination
"""
cursor: String!
}
type CompetitionScoringCriterion implements Node {
title: String!
order: Int!
description: String
weight: Float!
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
stage: CompetitionStage!
competition: Competition!
}
type CompetitionStage implements Node {
requiresApproval: Boolean!
noCode: Boolean!
useJuryScore: Boolean!
showMetric: Boolean!
privateApprovals: Boolean!
createdAt: DateTime!
validUntil: DateTime
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
seq: Int!
hasLeaderboard: Boolean!
isActive: Boolean!
competition: Competition!
submissionPreamble: String
leaderboard(after: String, before: String, first: Int, last: Int): SubmissionRankingConnection!
submissions(after: String, before: String, first: Int, last: Int): SubmissionConnection!
submission(entity: UsernameOrID): Submission
scoringCriteria: [CompetitionScoringCriterion!]!
}
type CompetitionStageConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionStageEdge!]!
"""
A list of nodes.
"""
nodes: [CompetitionStage!]!
}
"""
An edge in a connection.
"""
type CompetitionStageEdge {
"""
The item at the end of the edge
"""
node: CompetitionStage!
"""
A cursor for use in pagination
"""
cursor: String!
}
type CompetitionSubscription implements SubjectSubscription & Node {
createdAt: DateTime!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
id: ID!
entity: Entity!
kind: SubjectKind!
competition: Competition!
subject: Subscribable!
}
type CompetitionTeamRequest implements Node {
skills: String!
needs: String!
createdAt: DateTime!
updatedAt: DateTime!
id: ID!
viewerCan(action: Action!, asEntity: UsernameOrID): Boolean!
competition: Competition!
entity: Entity!
timezone: TimeZone!
lastMessageAt: DateTime
}
type CompetitionTeamRequestConnection {
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
"""
A list of edges.
"""
edges: [CompetitionTeamRequestEdge!]!
"""
A list of nodes.
"""
nodes: [CompetitionTeamRequest!]!
}
"""
An edge in a connection.
"""
type CompetitionTeamRequestEdge {
"""
The item at the end of the edge
"""
node: CompetitionTeamRequest!
"""
A cursor for use in pagination
"""
cursor: String!
}
input CreateBlogArticleInput {
title: String!
content: String!
shortDescription: String!
image: Upload
authorsIds: [ID!]!
seoTitle: String
seoDescription: String
imageAlt: String
}
input CreateCommentInput {
content: String!
}
input CreateCompetitionInput {
slug: String!
title: String!
shortDescription: String!
description: String
banner: Upload
thumbnail: Upload
visibility: ActivityVisibility! = UNAUTHENTICATED
tags: [String!]!
"""
Message shown to participants before they submit a solution.
"""
submissionPreamble: String = null
"""
Enables jury system on competition
"""
requiresApproval: Boolean! = false
"""
Enables no-code system on competition. Requires jury system to work.
"""
noCode: Boolean! = false
"""
Use average jury score instead of automated use-case metric. Requires jury system to work.
"""
useJuryScore: Boolean! = false
"""
Show automated use-case metric.
"""
showMetric: Boolean! = true
"""
Only allow the competition host, the reviewer and the submission author to see the approval
score.
"""
privateApprovals: Boolean! = true
timeline: CreateTimelineInput
}
input CreateCompetitionStageInput {
"""
Enables jury system on competition
"""
requiresApproval: Boolean! = false
"""
Enables no-code system on competition. Requires jury system to work.
"""
noCode: Boolean! = false
"""
Use average jury score instead of automated use-case metric. Requires jury system to work.
"""
useJuryScore: Boolean! = false
"""
Show automated use-case metric.
"""
showMetric: Boolean! = true
"""
Only allow the competition host, the reviewer and the submission author to see the approval
score.
"""
privateApprovals: Boolean! = true
"""
Message shown to participants before they submit a solution.
"""
submissionPreamble: String = null
}
input CreateCompetitionTeamRequestInput {
skills: String!
needs: String!
timezone: TimeZone!
}
input CreateDatasetInput {
localSlug: String!
name: String!
private: Boolean!
tags: [String!]!
shortDescription: String
}