-
Notifications
You must be signed in to change notification settings - Fork 6
/
schema.graphql
8754 lines (7750 loc) · 185 KB
/
schema.graphql
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
type Ability {
can_become_user_con_profile(userConProfileId: ID): Boolean!
can_create_cms_content_groups: Boolean!
can_create_cms_files: Boolean!
can_create_cms_graphql_queries: Boolean!
can_create_cms_layouts: Boolean!
can_create_cms_navigation_items: Boolean!
can_create_cms_partials: Boolean!
can_create_cms_variables: Boolean!
can_create_orders: Boolean!
can_create_pages: Boolean!
can_create_tickets: Boolean!
can_create_user_con_profiles: Boolean!
can_delete_event(eventId: ID): Boolean! @deprecated(reason: "Deleting events is never allowed; this always returns false")
can_delete_event_proposal(eventProposalId: ID): Boolean!
can_delete_ticket(ticketId: ID): Boolean!
can_delete_user_con_profile(userConProfileId: ID): Boolean!
can_force_confirm_signup(signupId: ID): Boolean!
can_list_events: Boolean!
can_manage_any_cms_content: Boolean!
can_manage_conventions: Boolean!
can_manage_email_routes: Boolean!
can_manage_forms: Boolean!
can_manage_oauth_applications: Boolean!
can_manage_rooms: Boolean!
can_manage_runs: Boolean!
can_manage_signups: Boolean!
can_manage_staff_positions: Boolean!
can_manage_ticket_types: Boolean!
can_override_maximum_event_provided_tickets: Boolean!
can_read_admin_notes_on_event_proposal(eventProposalId: ID): Boolean!
can_read_any_mailing_list: Boolean!
can_read_event_proposals: Boolean!
can_read_event_signups(eventId: ID): Boolean!
can_read_orders: Boolean!
can_read_organizations: Boolean!
can_read_reports: Boolean!
can_read_schedule: Boolean!
can_read_schedule_with_counts: Boolean!
can_read_signups: Boolean!
can_read_user_activity_alerts: Boolean!
can_read_user_con_profiles: Boolean!
can_read_users: Boolean!
can_update_admin_notes_on_event_proposal(eventProposalId: ID): Boolean!
can_update_bucket_signup(signupId: ID): Boolean!
can_update_convention: Boolean!
can_update_counted_signup(signupId: ID): Boolean!
can_update_departments: Boolean!
can_update_event(eventId: ID): Boolean!
can_update_event_categories: Boolean!
can_update_event_proposal(eventProposalId: ID): Boolean!
can_update_notification_templates: Boolean!
can_update_orders: Boolean!
can_update_products: Boolean!
can_update_signup(signupId: ID): Boolean!
can_update_signups: Boolean!
can_update_ticket(ticketId: ID): Boolean!
can_update_user_con_profile(userConProfileId: ID): Boolean!
can_withdraw_all_user_con_profile_signups(userConProfileId: ID): Boolean!
}
"""
Autogenerated input type of AcceptClickwrapAgreement
"""
input AcceptClickwrapAgreementInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
}
"""
Autogenerated return type of AcceptClickwrapAgreement.
"""
type AcceptClickwrapAgreementPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
my_profile: UserConProfile!
}
"""
Autogenerated input type of AcceptSignupRequest
"""
input AcceptSignupRequestInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID
}
"""
Autogenerated return type of AcceptSignupRequest.
"""
type AcceptSignupRequestPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
signup: Signup!
signup_request: SignupRequest!
}
type ActiveStorageAttachment {
byte_size: Int!
content_type: String!
filename: String!
id: ID!
resized_url(maxHeight: Int!, maxWidth: Int!): String
url: String!
}
"""
Autogenerated input type of AddOrderEntryToCurrentPendingOrder
"""
input AddOrderEntryToCurrentPendingOrderInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
order_entry: OrderEntryInput!
pay_what_you_want_amount: MoneyInput
}
"""
Autogenerated return type of AddOrderEntryToCurrentPendingOrder.
"""
type AddOrderEntryToCurrentPendingOrderPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
order_entry: OrderEntry!
}
"""
Autogenerated input type of AttachImageToEvent
"""
input AttachImageToEventInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID
signedBlobId: ID!
}
"""
Autogenerated return type of AttachImageToEvent.
"""
type AttachImageToEventPayload {
attachment: ActiveStorageAttachment!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
event: Event!
}
"""
Autogenerated input type of AttachImageToEventProposal
"""
input AttachImageToEventProposalInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID
signedBlobId: ID!
}
"""
Autogenerated return type of AttachImageToEventProposal.
"""
type AttachImageToEventProposalPayload {
attachment: ActiveStorageAttachment!
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
event_proposal: EventProposal!
}
type AuthorizedApplication {
name: String!
scopes: [String!]!
uid: ID!
}
scalar BigDecimal
"""
Autogenerated input type of CancelOrder
"""
input CancelOrderInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID
skip_refund: Boolean
}
"""
Autogenerated return type of CancelOrder.
"""
type CancelOrderPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
order: Order!
}
type ChoiceCount {
choice: Int!
count: Int!
state: SignupState!
}
union CmsContent = CmsLayout | CmsPartial | Page
type CmsContentGroup {
contents: [CmsContent!]!
current_ability_can_delete: Boolean!
current_ability_can_update: Boolean!
id: ID!
name: String!
permissions: [Permission!]!
}
input CmsContentGroupInput {
contents: [CmsContentInput!]
name: String
}
input CmsContentInput {
content_type: CmsContentTypeIndicator!
id: ID
}
enum CmsContentTypeIndicator {
CmsLayout
CmsPartial
Page
}
type CmsFile {
current_ability_can_delete: Boolean!
file: ActiveStorageAttachment!
id: ID!
}
type CmsGraphqlQuery {
admin_notes: String
current_ability_can_delete: Boolean!
current_ability_can_update: Boolean!
id: ID!
identifier: String!
query: String!
}
input CmsGraphqlQueryInput {
admin_notes: String
identifier: String
query: String
}
type CmsLayout {
admin_notes: String
content: String
content_html(path: String): String
content_html_with_placeholders(path: String): String
current_ability_can_delete: Boolean!
current_ability_can_update: Boolean!
id: ID!
name: String
navbar_classes: String
}
input CmsLayoutInput {
admin_notes: String
content: String
name: String
navbar_classes: String
}
type CmsNavigationItem {
id: ID!
navigation_section: CmsNavigationItem
page: Page
position: Int
title: String
}
input CmsNavigationItemInput {
navigationSectionId: ID
pageId: ID
position: Int
title: String
}
"""
A CMS parent is a web site managed by Intercode. It acts as a container for CMS content, such
as pages, partials, files, layouts, variables, content groups, and user-defined GraphQL queries.
Most CMS parents are conventions, so their content will be convention-specific and scoped to
that convention's domain name. The exception to this is the root site, which is what Intercode
renders when there is no convention associated with the current domain name. (See the RootSite
object for more details about this.)
"""
interface CmsParent {
"""
Finds a CMS content group by ID within the domain name of this HTTP request. If there is no
CMS content group with that ID, or the CMS content group is associated with a different
domain name, errors out.
"""
cmsContentGroup(
"""
The ID of the CMS content group to find.
"""
id: ID!
): CmsContentGroup!
"""
Returns all CMS content groups within the current domain.
"""
cmsContentGroups: [CmsContentGroup!]!
"""
Returns all CMS files within the current domain.
"""
cmsFiles: [CmsFile!]!
"""
Returns all CMS GraphQL queries within the current domain.
"""
cmsGraphqlQueries: [CmsGraphqlQuery!]!
"""
Returns all CMS layouts within the current domain.
"""
cmsLayouts: [CmsLayout!]!
"""
Returns all CMS navigation items within the current domain.
"""
cmsNavigationItems: [CmsNavigationItem!]!
"""
Finds a CMS page within the domain name of this HTTP request. Exactly one of the three
optional arguments (`id`, `slug`, and `rootPage`) must be specified. These each represent a
different way of finding a page. If the desired page can't be found within the current
domain name, errors out.
"""
cmsPage(
"""
The ID of the page to find.
"""
id: ID
"""
If true, returns the root page for this domain.
"""
rootPage: Boolean
"""
The unique slug of the page to find.
"""
slug: String
): Page!
"""
Returns all CMS pages within the current domain.
"""
cmsPages: [Page!]!
"""
Returns all CMS partials within the current domain.
"""
cmsPartials: [CmsPartial!]!
"""
Returns all CMS variables within the current domain.
"""
cmsVariables: [CmsVariable!]!
"""
Returns the default CMS layout used in this domain.
"""
defaultLayout: CmsLayout!
"""
Returns the CMS layout to be used for a particular URL path within the current domain. (This
will be the page-specific layout if the URL corresponds to a page with a layout override, or
the default layout for the domain otherwise.)
"""
effectiveCmsLayout(
"""
The path to find the effective layout for.
"""
path: String!
): CmsLayout!
"""
Does a full-text search within this domain.
"""
fullTextSearch(
"""
The text to search for.
"""
query: String!
): SearchResult!
"""
The ID of this object.
"""
id: ID!
"""
Returns all the Liquid assigns for regular CMS page rendering in the current domain name.
This is a combination of globally-accessible Liquid assigns and domain-specific user-defined
CMS variables.
"""
liquidAssigns: [LiquidAssign!]!
"""
Given a Liquid text string, renders it to HTML and returns the result.
"""
previewLiquid(
"""
The Liquid content to render.
"""
content: String!
): String!
"""
Given a Markdown text string, renders it to HTML and returns the result.
"""
previewMarkdown(
"""
The event ID that this Markdown will apply to, if applicable.
"""
eventId: ID
"""
The event proposal ID that this Markdown will apply to, if applicable.
"""
eventProposalId: ID
"""
The Markdown content to render.
"""
markdown: String!
): String!
"""
The CMS page used for the root path (/) of this domain.
"""
rootPage: Page!
"""
Finds CMS content by partial name, case-insensitive, within the current domain's CMS content.
For example, in a convention that has a partial called `attendee_profile` and a page called
`info_for_attendees`, a search for `attendee` would return both of these.
This query is always limited to a maximum of 10 results.
"""
typeaheadSearchCmsContent(
"""
The partial name to search by. If not specified, returns all CMS content
within the current domain (limited to 10 results).
"""
name: String
): [CmsContent!]!
}
type CmsPartial {
admin_notes: String
content: String
current_ability_can_delete: Boolean!
current_ability_can_update: Boolean!
id: ID!
name: String
}
input CmsPartialInput {
admin_notes: String
content: String
name: String
}
type CmsVariable {
current_ability_can_delete: Boolean!
current_ability_can_update: Boolean!
id: ID!
key: String!
value_json: String!
}
input CmsVariableInput {
key: String!
value_json: String!
}
type ContactEmail {
email: String!
formatted_address: String!
metadata_json: Json!
name: String
}
"""
A Convention in Intercode is essentially a web site hosted by Intercode. A Convention can represent an actual,
real-world convention (and this is probably the most common use case), but it can also represent a single event
(if the site_mode is set to single_event) or a series of events over time (if the site_mode is set to event_series).
They're called Convention for historical reasons, because naming is hard. Sorry. It's probably best to think of
them as "web site."
"""
type Convention implements CmsParent {
"""
Is this convention currently accepting event proposals?
"""
accepting_proposals: Boolean
"""
User profiles in this convention that can have a bio (because they're staff or event team members).
"""
bio_eligible_user_con_profiles: [UserConProfile!]!
"""
Is this convention canceled?
"""
canceled: Boolean!
"""
If this convention's email_mode is set to staff_emails_to_catch_all, all email sent to staff position email
addresses at this convention will be forwarded to this staff position.
"""
catch_all_staff_position: StaffPosition
"""
A clickwrap agreement, in Liquid format. If present, users will have to agree to this before they're allowed to
use the web site.
"""
clickwrap_agreement: String
"""
The value of clickwrap_agreement, rendered as HTML.
"""
clickwrap_agreement_html: String
"""
Finds a CMS content group by ID within the domain name of this HTTP request. If there is no
CMS content group with that ID, or the CMS content group is associated with a different
domain name, errors out.
"""
cmsContentGroup(
"""
The ID of the CMS content group to find.
"""
id: ID!
): CmsContentGroup!
"""
Returns all CMS content groups within the current domain.
"""
cmsContentGroups: [CmsContentGroup!]!
"""
Returns all CMS files within the current domain.
"""
cmsFiles: [CmsFile!]!
"""
Returns all CMS GraphQL queries within the current domain.
"""
cmsGraphqlQueries: [CmsGraphqlQuery!]!
"""
Returns all CMS layouts within the current domain.
"""
cmsLayouts: [CmsLayout!]!
"""
Returns all CMS navigation items within the current domain.
"""
cmsNavigationItems: [CmsNavigationItem!]!
"""
Finds a CMS page within the domain name of this HTTP request. Exactly one of the three
optional arguments (`id`, `slug`, and `rootPage`) must be specified. These each represent a
different way of finding a page. If the desired page can't be found within the current
domain name, errors out.
"""
cmsPage(
"""
The ID of the page to find.
"""
id: ID
"""
If true, returns the root page for this domain.
"""
rootPage: Boolean
"""
The unique slug of the page to find.
"""
slug: String
): Page!
"""
Returns all CMS pages within the current domain.
"""
cmsPages: [Page!]!
"""
Returns all CMS partials within the current domain.
"""
cmsPartials: [CmsPartial!]!
"""
Returns all CMS variables within the current domain.
"""
cmsVariables: [CmsVariable!]!
"""
Find a coupon by ID.
"""
coupon(
"""
The ID of the coupon to find.
"""
id: ID!
): Coupon!
coupons_paginated(
"""
Filters to restrict what items will appear in the result set.
"""
filters: CouponFiltersInput
"""
The page number to return from the result set. Page numbers start with 1.
"""
page: Int
"""
The number of items to return per page. Defaults to 20, can go up to 200.
"""
per_page: Int
"""
A set of fields to use for ordering the result set. The second field is used as a
tiebreaker for the first, the third field is used as a tiebreaker for the first two,
and so on. If the sort argument is missing or empty, the order of items will be left
up to the database (and may be unpredictable).
"""
sort: [SortInput!]
): CouponsPagination!
"""
When this convention was created.
"""
created_at: Date
"""
Returns the default CMS layout used in this domain.
"""
defaultLayout: CmsLayout!
"""
The ISO 4217 currency code used by default for products in this convention. If null, defaults to USD.
"""
default_currency_code: String
"""
All the departments in this convention.
"""
departments: [Department!]!
"""
The domain name used for serving this convention web site.
"""
domain: String
"""
Returns the CMS layout to be used for a particular URL path within the current domain. (This
will be the page-specific layout if the URL corresponds to a page with a layout override, or
the default layout for the domain otherwise.)
"""
effectiveCmsLayout(
"""
The path to find the effective layout for.
"""
path: String!
): CmsLayout!
"""
The default address that site emails will be sent from.
"""
email_from: String!
"""
How this convention site will handle incoming emails to its domain.
"""
email_mode: EmailMode!
"""
When this convention ends.
"""
ends_at: Date
"""
Finds an active event by ID in this convention. If there is no event with that ID in this
convention, or the event is no longer active, errors out.
"""
event(
"""
The ID of the event to find
"""
id: ID!
): Event!
"""
All the EventCategories in this convention.
"""
event_categories(
"""
If true, will only return EventCategories where the current user is allowed to read event proposals.
"""
current_ability_can_read_event_proposals: Boolean
): [EventCategory!]!
"""
If present, the site will automatically offer to set up forwarding email addresses for event teams under this
domain.
"""
event_mailing_list_domain: String
"""
Finds an event proposal by ID in this convention. If there is no event proposal with that ID
in this convention, errors out.
"""
event_proposal(
"""
The ID of the event proposal to find.
"""
id: ID!
): EventProposal!
event_proposals_paginated(
"""
Filters to restrict what items will appear in the result set.
"""
filters: EventProposalFiltersInput
"""
The page number to return from the result set. Page numbers start with 1.
"""
page: Int
"""
The number of items to return per page. Defaults to 20, can go up to 200.
"""
per_page: Int
"""
A set of fields to use for ordering the result set. The second field is used as a
tiebreaker for the first, the third field is used as a tiebreaker for the first two,
and so on. If the sort argument is missing or empty, the order of items will be left
up to the database (and may be unpredictable).
"""
sort: [SortInput!]
): EventProposalsPagination!
"""
Returns all active events in convention associated with the domain name of this HTTP request.
Filterable by a range of start/finish times.
**CAUTION:** this query can return a lot of data and take a long time. Please be careful
when using it.
"""
events(
"""
If present, filters the returned events.
"""
filters: EventFiltersInput
"""
If present, only returns events that occur earlier than this time
(non-inclusive.) These events may end after this time, but start before it.
"""
finish: Date
"""
If true, includes dropped events in addition to active events.
"""
includeDropped: Boolean
"""
If present, only returns events that occur at this time or later. (These
events may have started before that time, but will still be ongoing during it.)
"""
start: Date
): [Event!]!
events_paginated(
"""
Filters to restrict what items will appear in the result set.
"""
filters: EventFiltersInput
"""
The page number to return from the result set. Page numbers start with 1.
"""
page: Int
"""
The number of items to return per page. Defaults to 20, can go up to 200.
"""
per_page: Int
"""
A set of fields to use for ordering the result set. The second field is used as a
tiebreaker for the first, the third field is used as a tiebreaker for the first two,
and so on. If the sort argument is missing or empty, the order of items will be left
up to the database (and may be unpredictable).
"""
sort: [SortInput!]
): EventsPagination!
"""
The favicon that will be served to browsers on this site.
"""
favicon: ActiveStorageAttachment
favicon_url: String @deprecated(reason: "Please use the favicon field instead.")
"""
Finds a form by ID in this convention. If there is no form with that ID in this convention,
errors out.
"""
form(
"""
The ID of the form to find.
"""
id: ID!
): Form!
"""
All the forms in this convention.
"""
forms: [Form!]!
"""
Does a full-text search within this domain.
"""
fullTextSearch(
"""
The text to search for.
"""
query: String!
): SearchResult!
"""
If true, this convention will not be listed in CMS content on the root site.
"""
hidden: Boolean!
"""
The ID of this convention.
"""
id: ID!
"""
The language to use for localized content in this site.
"""
language: String!
"""
Returns all the Liquid assigns for regular CMS page rendering in the current domain name.
This is a combination of globally-accessible Liquid assigns and domain-specific user-defined
CMS variables.
"""
liquidAssigns: [LiquidAssign!]!
"""
The physical location of the convention, in GeoJSON format.
"""
location: Json
"""
A sub-object for accessing this convention's autogenerated mailing lists.
"""
mailing_lists: MailingLists!
"""
The schedule of how many signups are allowed in this convention and when.
"""
maximum_event_signups: ScheduledValue @deprecated(reason: "Please use SignupRound instead")
"""
The maximum number of tickets this convention can sell.
"""
maximum_tickets: Int
"""
Returns the convention-specific profile for the current user within this convention. If no
user is signed in, returns null.
"""
my_profile: UserConProfile
"""
Returns all signup ranked choices for the current user within this convention. If no user is signed in,
returns an empty array.
"""
my_signup_ranked_choices: [SignupRankedChoice!]!
"""
Returns all signup requests for the current user within this convention. If no user is signed in,
returns an empty array.
"""
my_signup_requests: [SignupRequest!]!
"""
Returns all signups for the current user within this convention. If no user is signed in,
returns an empty array.
"""
my_signups: [Signup!]!
"""
The name of this convention.
"""
name: String!
"""
All the NotificationTemplates in this convention.
"""
notification_templates: [NotificationTemplate!]!
"""
Returns all the Liquid assigns for rendering a particular notification event in this
convention. This is a combination of globally-accessible Liquid assigns, values specific
to that notification event, and convention-specific user-defined CMS variables.
"""
notifier_liquid_assigns(
"""
The key of the notification event to use for generating assigns.
"""
eventKey: String!
): [LiquidAssign!]!
"""
The image that will be served from this site using the `<meta property="og:image">` tag. For more information
about OpenGraph, see https://ogp.me/.
"""
open_graph_image: ActiveStorageAttachment
open_graph_image_url: String @deprecated(reason: "Please use the open_graph_image field instead.")
"""
Find an order by ID.
"""
order(
"""
The ID of the order to find.
"""
id: ID!
): Order!
orders_paginated(
"""
Filters to restrict what items will appear in the result set.
"""
filters: OrderFiltersInput
"""
The page number to return from the result set. Page numbers start with 1.
"""
page: Int
"""
The number of items to return per page. Defaults to 20, can go up to 200.
"""
per_page: Int
"""
A set of fields to use for ordering the result set. The second field is used as a
tiebreaker for the first, the third field is used as a tiebreaker for the first two,
and so on. If the sort argument is missing or empty, the order of items will be left
up to the database (and may be unpredictable).
"""
sort: [SortInput!]
): OrdersPagination!
"""
The organization in charge of this convention.
"""
organization: Organization