-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
6692 lines (5374 loc) · 184 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
"""All input for the `acceptInvitationToOrganization` mutation."""
input AcceptInvitationToOrganizationInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
code: String
invitationId: UUID!
}
"""The output of our `acceptInvitationToOrganization` mutation."""
type AcceptInvitationToOrganizationPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
"""
A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’
"""
input BooleanFilter {
"""
Not equal to the specified value, treating null like an ordinary value.
"""
distinctFrom: Boolean
"""Equal to the specified value."""
equalTo: Boolean
"""Greater than the specified value."""
greaterThan: Boolean
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: Boolean
"""Included in the specified list."""
in: [Boolean!]
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Less than the specified value."""
lessThan: Boolean
"""Less than or equal to the specified value."""
lessThanOrEqualTo: Boolean
"""Equal to the specified value, treating null like an ordinary value."""
notDistinctFrom: Boolean
"""Not equal to the specified value."""
notEqualTo: Boolean
"""Not included in the specified list."""
notIn: [Boolean!]
}
"""All input for the `changePassword` mutation."""
input ChangePasswordInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
newPassword: String!
oldPassword: String!
}
"""The output of our `changePassword` mutation."""
type ChangePasswordPayload {
boolean: Boolean
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
"""All input for the `confirmAccountDeletion` mutation."""
input ConfirmAccountDeletionInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
token: String!
}
"""The output of our `confirmAccountDeletion` mutation."""
type ConfirmAccountDeletionPayload {
boolean: Boolean
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
type Consultation implements Node {
createdAt: Datetime!
id: UUID!
"""Reads and enables pagination through a set of `Message`."""
messages(
"""Read all values in the set after (below) this cursor."""
after: Cursor
"""Read all values in the set before (above) this cursor."""
before: Cursor
"""
A condition to be used in determining which values should be returned by the collection.
"""
condition: MessageCondition
"""
A filter to be used in determining which values should be returned by the collection.
"""
filter: MessageFilter
"""Only read the first `n` values of the set."""
first: Int
"""Only read the last `n` values of the set."""
last: Int
"""
Skip the first `n` values from our `after` cursor, an alternative to cursor
based pagination. May not be used with `last`.
"""
offset: Int
"""The method to use when ordering `Message`."""
orderBy: [MessagesOrderBy!] = [PRIMARY_KEY_ASC]
): MessagesConnection!
name: String!
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
"""Reads a single `Organization` that is related to this `Consultation`."""
organization: Organization
organizationId: UUID!
"""
Reads and enables pagination through a set of `ConsultationParticipant`.
"""
participations(
"""Read all values in the set after (below) this cursor."""
after: Cursor
"""Read all values in the set before (above) this cursor."""
before: Cursor
"""
A condition to be used in determining which values should be returned by the collection.
"""
condition: ConsultationParticipantCondition
"""
A filter to be used in determining which values should be returned by the collection.
"""
filter: ConsultationParticipantFilter
"""Only read the first `n` values of the set."""
first: Int
"""Only read the last `n` values of the set."""
last: Int
"""
Skip the first `n` values from our `after` cursor, an alternative to cursor
based pagination. May not be used with `last`.
"""
offset: Int
"""The method to use when ordering `ConsultationParticipant`."""
orderBy: [ConsultationParticipantsOrderBy!] = [PRIMARY_KEY_ASC]
): ConsultationParticipantsConnection!
updatedAt: Datetime!
}
"""
A condition to be used against `Consultation` object types. All fields are
tested for equality and combined with a logical ‘and.’
"""
input ConsultationCondition {
"""Checks for equality with the object’s `createdAt` field."""
createdAt: Datetime
"""Checks for equality with the object’s `id` field."""
id: UUID
"""Checks for equality with the object’s `name` field."""
name: String
"""Checks for equality with the object’s `organizationId` field."""
organizationId: UUID
"""Checks for equality with the object’s `updatedAt` field."""
updatedAt: Datetime
}
"""
A filter to be used against `Consultation` object types. All fields are combined with a logical ‘and.’
"""
input ConsultationFilter {
"""Checks for all expressions in this list."""
and: [ConsultationFilter!]
"""Filter by the object’s `createdAt` field."""
createdAt: DatetimeFilter
"""Filter by the object’s `id` field."""
id: UUIDFilter
"""Filter by the object’s `messages` relation."""
messages: ConsultationToManyMessageFilter
"""Some related `messages` exist."""
messagesExist: Boolean
"""Filter by the object’s `name` field."""
name: StringFilter
"""Negates the expression."""
not: ConsultationFilter
"""Checks for any expressions in this list."""
or: [ConsultationFilter!]
"""Filter by the object’s `organization` relation."""
organization: OrganizationFilter
"""Filter by the object’s `organizationId` field."""
organizationId: UUIDFilter
"""Filter by the object’s `participations` relation."""
participations: ConsultationToManyConsultationParticipantFilter
"""Some related `participations` exist."""
participationsExist: Boolean
"""Filter by the object’s `updatedAt` field."""
updatedAt: DatetimeFilter
}
"""An input for mutations affecting `Consultation`"""
input ConsultationInput {
id: UUID
name: String!
}
type ConsultationParticipant implements Node {
"\nThe consultation this participant is part of.\n"
consultation: Consultation
consultationId: UUID!
createdAt: Datetime!
id: UUID!
isClient: Boolean!
isCounselor: Boolean!
isSupervisor: Boolean!
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
sysPeriod: DatetimeRange!
updatedAt: Datetime!
"""
Reads a single `User` that is related to this `ConsultationParticipant`.
"""
user: User
userId: UUID!
}
"""
A condition to be used against `ConsultationParticipant` object types. All
fields are tested for equality and combined with a logical ‘and.’
"""
input ConsultationParticipantCondition {
"""Checks for equality with the object’s `consultationId` field."""
consultationId: UUID
"""Checks for equality with the object’s `createdAt` field."""
createdAt: Datetime
"""Checks for equality with the object’s `id` field."""
id: UUID
"""Checks for equality with the object’s `isClient` field."""
isClient: Boolean
"""Checks for equality with the object’s `isCounselor` field."""
isCounselor: Boolean
"""Checks for equality with the object’s `isSupervisor` field."""
isSupervisor: Boolean
"""Checks for equality with the object’s `sysPeriod` field."""
sysPeriod: DatetimeRangeInput
"""Checks for equality with the object’s `updatedAt` field."""
updatedAt: Datetime
"""Checks for equality with the object’s `userId` field."""
userId: UUID
}
"""
A filter to be used against `ConsultationParticipant` object types. All fields are combined with a logical ‘and.’
"""
input ConsultationParticipantFilter {
"""Checks for all expressions in this list."""
and: [ConsultationParticipantFilter!]
"""Filter by the object’s `consultation` relation."""
consultation: ConsultationFilter
"""Filter by the object’s `consultationId` field."""
consultationId: UUIDFilter
"""Filter by the object’s `createdAt` field."""
createdAt: DatetimeFilter
"""Filter by the object’s `id` field."""
id: UUIDFilter
"""Filter by the object’s `isClient` field."""
isClient: BooleanFilter
"""Filter by the object’s `isCounselor` field."""
isCounselor: BooleanFilter
"""Filter by the object’s `isSupervisor` field."""
isSupervisor: BooleanFilter
"""Negates the expression."""
not: ConsultationParticipantFilter
"""Checks for any expressions in this list."""
or: [ConsultationParticipantFilter!]
"""Filter by the object’s `sysPeriod` field."""
sysPeriod: DatetimeRangeFilter
"""Filter by the object’s `updatedAt` field."""
updatedAt: DatetimeFilter
"""Filter by the object’s `user` relation."""
user: UserFilter
"""Filter by the object’s `userId` field."""
userId: UUIDFilter
}
"""An input for mutations affecting `ConsultationParticipant`"""
input ConsultationParticipantInput {
consultationId: UUID!
id: UUID
isClient: Boolean
isCounselor: Boolean
isSupervisor: Boolean
userId: UUID
}
"""
Represents an update to a `ConsultationParticipant`. Fields that are set will be updated.
"""
input ConsultationParticipantPatch {
isClient: Boolean
isCounselor: Boolean
isSupervisor: Boolean
}
"""A connection to a list of `ConsultationParticipant` values."""
type ConsultationParticipantsConnection {
"""
A list of edges which contains the `ConsultationParticipant` and cursor to aid in pagination.
"""
edges: [ConsultationParticipantsEdge!]!
"""A list of `ConsultationParticipant` objects."""
nodes: [ConsultationParticipant!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""
The count of *all* `ConsultationParticipant` you could get from the connection.
"""
totalCount: Int!
}
"""A `ConsultationParticipant` edge in the connection."""
type ConsultationParticipantsEdge {
"""A cursor for use in pagination."""
cursor: Cursor
"""The `ConsultationParticipant` at the end of the edge."""
node: ConsultationParticipant!
}
"""Methods to use when ordering `ConsultationParticipant`."""
enum ConsultationParticipantsOrderBy {
CONSULTATION_ID_ASC
CONSULTATION_ID_DESC
CREATED_AT_ASC
CREATED_AT_DESC
ID_ASC
ID_DESC
IS_CLIENT_ASC
IS_CLIENT_DESC
IS_COUNSELOR_ASC
IS_COUNSELOR_DESC
IS_SUPERVISOR_ASC
IS_SUPERVISOR_DESC
NATURAL
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
UPDATED_AT_ASC
UPDATED_AT_DESC
USER_ID_ASC
USER_ID_DESC
}
"""
Represents an update to a `Consultation`. Fields that are set will be updated.
"""
input ConsultationPatch {
name: String
}
"""
A filter to be used against many `ConsultationParticipant` object types. All fields are combined with a logical ‘and.’
"""
input ConsultationToManyConsultationParticipantFilter {
"""
Every related `ConsultationParticipant` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
every: ConsultationParticipantFilter
"""
No related `ConsultationParticipant` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
none: ConsultationParticipantFilter
"""
Some related `ConsultationParticipant` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
some: ConsultationParticipantFilter
}
"""
A filter to be used against many `Message` object types. All fields are combined with a logical ‘and.’
"""
input ConsultationToManyMessageFilter {
"""
Every related `Message` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
every: MessageFilter
"""
No related `Message` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
none: MessageFilter
"""
Some related `Message` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
some: MessageFilter
}
"""A connection to a list of `Consultation` values."""
type ConsultationsConnection {
"""
A list of edges which contains the `Consultation` and cursor to aid in pagination.
"""
edges: [ConsultationsEdge!]!
"""A list of `Consultation` objects."""
nodes: [Consultation!]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""The count of *all* `Consultation` you could get from the connection."""
totalCount: Int!
}
"""A `Consultation` edge in the connection."""
type ConsultationsEdge {
"""A cursor for use in pagination."""
cursor: Cursor
"""The `Consultation` at the end of the edge."""
node: Consultation!
}
"""Methods to use when ordering `Consultation`."""
enum ConsultationsOrderBy {
CREATED_AT_ASC
CREATED_AT_DESC
ID_ASC
ID_DESC
NAME_ASC
NAME_DESC
NATURAL
ORGANIZATION_ID_ASC
ORGANIZATION_ID_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
UPDATED_AT_ASC
UPDATED_AT_DESC
}
"""All input for the create `Consultation` mutation."""
input CreateConsultationInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `Consultation` to be created by this mutation."""
consultation: ConsultationInput!
}
"""All input for the create `ConsultationParticipant` mutation."""
input CreateConsultationParticipantInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `ConsultationParticipant` to be created by this mutation."""
consultationParticipant: ConsultationParticipantInput!
}
"""The output of our create `ConsultationParticipant` mutation."""
type CreateConsultationParticipantPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"\nThe consultation this participant is part of.\n"
consultation: Consultation
"""The `ConsultationParticipant` that was created by this mutation."""
consultationParticipant: ConsultationParticipant
"""An edge for our `ConsultationParticipant`. May be used by Relay 1."""
consultationParticipantEdge(
"""The method to use when ordering `ConsultationParticipant`."""
orderBy: [ConsultationParticipantsOrderBy!]! = [PRIMARY_KEY_ASC]
): ConsultationParticipantsEdge
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
"""
Reads a single `User` that is related to this `ConsultationParticipant`.
"""
user: User
}
"""The output of our create `Consultation` mutation."""
type CreateConsultationPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""The `Consultation` that was created by this mutation."""
consultation: Consultation
"""An edge for our `Consultation`. May be used by Relay 1."""
consultationEdge(
"""The method to use when ordering `Consultation`."""
orderBy: [ConsultationsOrderBy!]! = [PRIMARY_KEY_ASC]
): ConsultationsEdge
"""Reads a single `Organization` that is related to this `Consultation`."""
organization: Organization
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
"""All input for the create `File` mutation."""
input CreateFileInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `File` to be created by this mutation."""
file: FileInput!
}
"""The output of our create `File` mutation."""
type CreateFilePayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""The `File` that was created by this mutation."""
file: File
"""An edge for our `File`. May be used by Relay 1."""
fileEdge(
"""The method to use when ordering `File`."""
orderBy: [FilesOrderBy!]! = [PRIMARY_KEY_ASC]
): FilesEdge
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
"""Reads a single `User` that is related to this `File`."""
uploader: User
}
"""All input for the create `Folder` mutation."""
input CreateFolderInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `Folder` to be created by this mutation."""
folder: FolderInput!
}
"""The output of our create `Folder` mutation."""
type CreateFolderPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""The `Folder` that was created by this mutation."""
folder: Folder
"""An edge for our `Folder`. May be used by Relay 1."""
folderEdge(
"""The method to use when ordering `Folder`."""
orderBy: [FoldersOrderBy!]! = [PRIMARY_KEY_ASC]
): FoldersEdge
"""Reads a single `Organization` that is related to this `Folder`."""
organization: Organization
"""Reads a single `Folder` that is related to this `Folder`."""
parent: Folder
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
"""All input for the `createOrganization` mutation."""
input CreateOrganizationInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
name: String!
slug: String!
}
"""The output of our `createOrganization` mutation."""
type CreateOrganizationPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
organization: Organization
"""An edge for our `Organization`. May be used by Relay 1."""
organizationEdge(
"""The method to use when ordering `Organization`."""
orderBy: [OrganizationsOrderBy!]! = [PRIMARY_KEY_ASC]
): OrganizationsEdge
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
}
"""All input for the create `PdfFile` mutation."""
input CreatePdfFileInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `PdfFile` to be created by this mutation."""
pdfFile: PdfFileInput!
}
"""The output of our create `PdfFile` mutation."""
type CreatePdfFilePayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""Reads a single `File` that is related to this `PdfFile`."""
file: File
"""The `PdfFile` that was created by this mutation."""
pdfFile: PdfFile
"""An edge for our `PdfFile`. May be used by Relay 1."""
pdfFileEdge(
"""The method to use when ordering `PdfFile`."""
orderBy: [PdfFilesOrderBy!]! = [PRIMARY_KEY_ASC]
): PdfFilesEdge
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
"""Reads a single `File` that is related to this `PdfFile`."""
thumbnail: File
}
"""All input for the create `UserEmail` mutation."""
input CreateUserEmailInput {
"""
An arbitrary string value with no semantic meaning. Will be included in the
payload verbatim. May be used to track mutations by the client.
"""
clientMutationId: String
"""The `UserEmail` to be created by this mutation."""
userEmail: UserEmailInput!
}
"""The output of our create `UserEmail` mutation."""
type CreateUserEmailPayload {
"""
The exact same `clientMutationId` that was provided in the mutation input,
unchanged and unused. May be used by a client to track mutations.
"""
clientMutationId: String
"""
Our root query field type. Allows us to run any query from our mutation payload.
"""
query: Query
"""Reads a single `User` that is related to this `UserEmail`."""
user: User
"""The `UserEmail` that was created by this mutation."""
userEmail: UserEmail
"""An edge for our `UserEmail`. May be used by Relay 1."""
userEmailEdge(
"""The method to use when ordering `UserEmail`."""
orderBy: [UserEmailsOrderBy!]! = [PRIMARY_KEY_ASC]
): UserEmailsEdge
}
"""A connection to a list of `UUID` values."""
type CurrentUserConsultationIdsConnection {
"""
A list of edges which contains the `UUID` and cursor to aid in pagination.
"""
edges: [CurrentUserConsultationIdsEdge]!
"""A list of `UUID` objects."""
nodes: [UUID]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""The count of *all* `UUID` you could get from the connection."""
totalCount: Int!
}
"""A `UUID` edge in the connection."""
type CurrentUserConsultationIdsEdge {
"""A cursor for use in pagination."""
cursor: Cursor
"""The `UUID` at the end of the edge."""
node: UUID
}
"""A connection to a list of `UUID` values."""
type CurrentUserInvitedOrganizationIdsConnection {
"""
A list of edges which contains the `UUID` and cursor to aid in pagination.
"""
edges: [CurrentUserInvitedOrganizationIdsEdge]!
"""A list of `UUID` objects."""
nodes: [UUID]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""The count of *all* `UUID` you could get from the connection."""
totalCount: Int!
}
"""A `UUID` edge in the connection."""
type CurrentUserInvitedOrganizationIdsEdge {
"""A cursor for use in pagination."""
cursor: Cursor
"""The `UUID` at the end of the edge."""
node: UUID
}
"""A connection to a list of `UUID` values."""
type CurrentUserMemberOrganizationIdsConnection {
"""
A list of edges which contains the `UUID` and cursor to aid in pagination.
"""
edges: [CurrentUserMemberOrganizationIdsEdge]!
"""A list of `UUID` objects."""
nodes: [UUID]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""The count of *all* `UUID` you could get from the connection."""
totalCount: Int!
}
"""A `UUID` edge in the connection."""
type CurrentUserMemberOrganizationIdsEdge {
"""A cursor for use in pagination."""
cursor: Cursor
"""The `UUID` at the end of the edge."""
node: UUID
}
"""A location in a connection that can be used for resuming pagination."""
scalar Cursor
"""
A point in time as described by the [ISO
8601](https://en.wikipedia.org/wiki/ISO_8601) and, if it has a timezone, [RFC
3339](https://datatracker.ietf.org/doc/html/rfc3339) standards. Input values
that do not conform to both ISO 8601 and RFC 3339 may be coerced, which may lead
to unexpected results.
"""
scalar Datetime
"""
A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’
"""
input DatetimeFilter {
"""
Not equal to the specified value, treating null like an ordinary value.
"""
distinctFrom: Datetime
"""Equal to the specified value."""
equalTo: Datetime
"""Greater than the specified value."""
greaterThan: Datetime
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: Datetime
"""Included in the specified list."""
in: [Datetime!]
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Less than the specified value."""
lessThan: Datetime
"""Less than or equal to the specified value."""
lessThanOrEqualTo: Datetime
"""Equal to the specified value, treating null like an ordinary value."""
notDistinctFrom: Datetime
"""Not equal to the specified value."""
notEqualTo: Datetime
"""Not included in the specified list."""
notIn: [Datetime!]
}
"""A range of `Datetime`."""
type DatetimeRange {
"""The ending bound of our range."""
end: DatetimeRangeBound
"""The starting bound of our range."""
start: DatetimeRangeBound
}
"""
The value at one end of a range. A range can either include this value, or not.
"""
type DatetimeRangeBound {
"""Whether or not the value of this bound is included in the range."""
inclusive: Boolean!
"""The value at one end of our range."""
value: Datetime!
}
"""
The value at one end of a range. A range can either include this value, or not.
"""
input DatetimeRangeBoundInput {
"""Whether or not the value of this bound is included in the range."""
inclusive: Boolean!
"""The value at one end of our range."""
value: Datetime!
}
"""
A filter to be used against DatetimeRange fields. All fields are combined with a logical ‘and.’
"""
input DatetimeRangeFilter {
"""Adjacent to the specified range."""
adjacentTo: DatetimeRangeInput
"""Contained by the specified range."""
containedBy: DatetimeRangeInput
"""Contains the specified range."""
contains: DatetimeRangeInput
"""Contains the specified value."""
containsElement: Datetime
"""
Not equal to the specified value, treating null like an ordinary value.
"""
distinctFrom: DatetimeRangeInput
"""Equal to the specified value."""
equalTo: DatetimeRangeInput
"""Greater than the specified value."""