forked from PalisadoesFoundation/talawa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
1998 lines (1785 loc) · 39.4 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
directive @auth on FIELD_DEFINITION
directive @role(requires: UserType) on FIELD_DEFINITION
type ActionItem {
_id: ID!
actionItemCategory: ActionItemCategory
assignee: User
assigner: User
assignmentDate: Date!
completionDate: Date!
createdAt: Date!
creator: User
dueDate: Date!
event: Event
isCompleted: Boolean!
postCompletionNotes: String
preCompletionNotes: String
updatedAt: Date!
}
type ActionItemCategory {
_id: ID!
createdAt: Date!
creator: User
isDisabled: Boolean!
name: String!
organization: Organization
updatedAt: Date!
}
input ActionItemWhereInput {
actionItemCategory_id: ID
event_id: ID
is_active: Boolean
is_completed: Boolean
}
enum ActionItemsOrderByInput {
createdAt_ASC
createdAt_DESC
}
type Address {
city: String
countryCode: String
dependentLocality: String
line1: String
line2: String
postalCode: String
sortingCode: String
state: String
}
input AddressInput {
city: String
countryCode: String
dependentLocality: String
line1: String
line2: String
postalCode: String
sortingCode: String
state: String
}
type Advertisement {
_id: ID!
createdAt: DateTime!
creator: User
endDate: Date!
mediaUrl: URL!
name: String!
organization: Organization
startDate: Date!
type: AdvertisementType!
updatedAt: DateTime!
}
type AdvertisementEdge {
cursor: String
node: Advertisement
}
enum AdvertisementType {
BANNER
MENU
POPUP
}
type AdvertisementsConnection {
edges: [AdvertisementEdge]
pageInfo: ConnectionPageInfo
totalCount: Int
}
type AgendaCategory {
_id: ID!
createdAt: Date!
createdBy: User!
description: String
name: String!
organization: Organization!
updatedAt: Date
updatedBy: User
}
type AgendaItem {
_id: ID!
attachments: [String]
categories: [AgendaCategory]
createdAt: Date!
createdBy: User!
description: String
duration: String!
organization: Organization!
relatedEvent: Event
sequence: Int!
title: String!
updatedAt: Date!
updatedBy: User!
urls: [String]
users: [User]
}
type AgendaSection {
_id: ID!
createdAt: Date!
createdBy: User
description: String!
items: [AgendaItem]
relatedEvent: Event
sequence: Int!
updatedAt: Date
updatedBy: User
}
type AggregatePost {
count: Int!
}
type AggregateUser {
count: Int!
}
scalar Any
type AppUserProfile {
_id: ID!
adminFor: [Organization]
appLanguageCode: String!
createdEvents: [Event]
createdOrganizations: [Organization]
eventAdmin: [Event]
isSuperAdmin: Boolean!
pluginCreationAllowed: Boolean!
userId: User!
}
type AuthData {
accessToken: String!
appUserProfile: AppUserProfile!
refreshToken: String!
user: User!
}
type CheckIn {
_id: ID!
createdAt: DateTime!
event: Event!
feedbackSubmitted: Boolean!
time: DateTime!
updatedAt: DateTime!
user: User!
}
input CheckInCheckOutInput {
eventId: ID!
userId: ID!
}
type CheckInStatus {
_id: ID!
checkIn: CheckIn
user: User!
}
type CheckOut {
_id: ID!
createdAt: DateTime!
eventAttendeeId: ID!
time: DateTime!
updatedAt: DateTime!
}
type Comment {
_id: ID!
createdAt: DateTime!
creator: User
likeCount: Int
likedBy: [User]
post: Post!
text: String!
updatedAt: DateTime!
}
input CommentInput {
text: String!
}
type Community {
_id: ID!
logoUrl: String
name: String!
socialMediaUrls: SocialMediaUrls
websiteLink: String
}
union ConnectionError = InvalidCursor | MaximumValueError
"""
The standard graphQL connection page info that contains metadata about a
particular instance of a connection. ALl other custom connection page info
types must implement this interface.
"""
interface ConnectionPageInfo {
"""
A field to tell the value of cursor for the last edge of a particular instance of a
connection.
"""
endCursor: String
"""
A field to tell whether the connection has additional edges after the
edge with endCursor as its cursor.
"""
hasNextPage: Boolean!
"""
A field to tell whether the connection has additional edges
before the edge with startCursor as its cursor.
"""
hasPreviousPage: Boolean!
"""
A field to tell the value of cursor for the first edge of a particular instance of a
connection.
"""
startCursor: String
}
scalar CountryCode
input CreateActionItemInput {
assigneeId: ID!
dueDate: Date
eventId: ID
preCompletionNotes: String
}
union CreateAdminError = OrganizationMemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedError | UserNotFoundError
type CreateAdminPayload {
user: AppUserProfile
userErrors: [CreateAdminError!]!
}
input CreateAdvertisementInput {
endDate: Date!
mediaFile: String!
name: String!
organizationId: ID!
startDate: Date!
type: AdvertisementType!
}
type CreateAdvertisementPayload {
advertisement: Advertisement
}
input CreateAgendaCategoryInput {
description: String
name: String!
organizationId: ID!
}
input CreateAgendaItemInput {
attachments: [String]
categories: [ID]
description: String
duration: String!
organizationId: ID!
relatedEventId: ID
sequence: Int!
title: String
urls: [String]
users: [ID]
}
input CreateAgendaSectionInput {
description: String!
items: [CreateAgendaItemInput]
relatedEvent: ID
sequence: Int!
}
union CreateCommentError = PostNotFoundError
type CreateCommentPayload {
comment: Comment
userErrors: [CreateCommentError!]!
}
union CreateDirectChatError = OrganizationNotFoundError | UserNotFoundError
union CreateMemberError = MemberNotFoundError | OrganizationNotFoundError | UserNotAuthorizedAdminError | UserNotAuthorizedError | UserNotFoundError
type CreateMemberPayload {
organization: Organization
userErrors: [CreateMemberError!]!
}
input CreateUserTagInput {
name: String!
organizationId: ID!
parentTagId: ID
tagColor: String!
}
enum Currency {
AED
AFN
ALL
AMD
ANG
AOA
ARS
AUD
AWG
AZN
BAM
BBD
BDT
BGN
BHD
BIF
BMD
BND
BOB
BRL
BSD
BTN
BWP
BYN
BZD
CAD
CDF
CHF
CLP
CNY
COP
CRC
CUP
CVE
CZK
DJF
DKK
DOP
DZD
EGP
ERN
ETB
EUR
FJD
FKP
FOK
FRO
GBP
GEL
GGP
GHS
GIP
GMD
GNF
GTQ
GYD
HKD
HNL
HRK
HTG
HUF
IDR
ILS
IMP
INR
IQD
IRR
ISK
JEP
JMD
JOD
JPY
KES
KGS
KHR
KID
KMF
KRW
KWD
KYD
KZT
LAK
LBP
LKR
LRD
LSL
LYD
MAD
MDL
MGA
MKD
MMK
MNT
MOP
MRU
MUR
MVR
MWK
MXN
MYR
MZN
NAD
NGN
NIO
NOK
NPR
NZD
OMR
PAB
PEN
PGK
PHP
PKR
PLN
PYG
QAR
RON
RSD
RUB
RWF
SAR
SBD
SCR
SDG
SEK
SGD
SHP
SLL
SOS
SPL
SRD
STN
SVC
SYP
SZL
THB
TJS
TMT
TND
TOP
TRY
TTD
TVD
TWD
TZS
UAH
UGX
USD
UYU
UZS
VEF
VND
VUV
WST
XAF
XCD
XDR
XOF
XPF
YER
ZAR
ZMW
ZWD
}
input CursorPaginationInput {
cursor: String
direction: PaginationDirection!
limit: PositiveInt!
}
scalar Date
scalar DateTime
"""
Default connection page info for containing the metadata for a connection
instance.
"""
type DefaultConnectionPageInfo implements ConnectionPageInfo {
endCursor: String
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
}
type DeleteAdvertisementPayload {
advertisement: Advertisement
}
type DeletePayload {
success: Boolean!
}
type DirectChat {
_id: ID!
createdAt: DateTime!
creator: User
messages: [DirectChatMessage]
organization: Organization!
updatedAt: DateTime!
users: [User!]!
}
type DirectChatMessage {
_id: ID!
createdAt: DateTime!
directChatMessageBelongsTo: DirectChat!
messageContent: String!
receiver: User!
sender: User!
updatedAt: DateTime!
}
type Donation {
_id: ID!
amount: Float!
createdAt: DateTime!
nameOfOrg: String!
nameOfUser: String!
orgId: ID!
payPalId: String!
updatedAt: DateTime!
userId: ID!
}
input DonationWhereInput {
id: ID
id_contains: ID
id_in: [ID!]
id_not: ID
id_not_in: [ID!]
id_starts_with: ID
name_of_user: String
name_of_user_contains: String
name_of_user_in: [String!]
name_of_user_not: String
name_of_user_not_in: [String!]
name_of_user_starts_with: String
}
input EditVenueInput {
capacity: Int
description: String
file: String
id: ID!
name: String
}
enum EducationGrade {
GRADE_1
GRADE_2
GRADE_3
GRADE_4
GRADE_5
GRADE_6
GRADE_7
GRADE_8
GRADE_9
GRADE_10
GRADE_11
GRADE_12
GRADUATE
KG
NO_GRADE
PRE_KG
}
scalar EmailAddress
enum EmploymentStatus {
FULL_TIME
PART_TIME
UNEMPLOYED
}
interface Error {
message: String!
}
type Event {
_id: ID!
actionItems: [ActionItem]
admins(adminId: ID): [User!]
agendaItems: [AgendaItem]
allDay: Boolean!
attendees: [User]
attendeesCheckInStatus: [CheckInStatus!]!
averageFeedbackScore: Float
baseRecurringEvent: Event
createdAt: DateTime!
creator: User
description: String!
endDate: Date
endTime: Time
feedback: [Feedback!]!
images: [String]
isPublic: Boolean!
isRecurringEventException: Boolean!
isRegisterable: Boolean!
latitude: Latitude
location: String
longitude: Longitude
organization: Organization
recurrenceRule: RecurrenceRule
recurring: Boolean!
startDate: Date!
startTime: Time
status: Status!
title: String!
updatedAt: DateTime!
}
type EventAttendee {
_id: ID!
checkInId: ID
checkOutId: ID
createdAt: DateTime!
eventId: ID!
isCheckedIn: Boolean!
isCheckedOut: Boolean!
isInvited: Boolean!
isRegistered: Boolean!
updatedAt: DateTime!
userId: ID!
}
input EventAttendeeInput {
eventId: ID!
userId: ID!
}
input EventInput {
allDay: Boolean!
description: String!
endDate: Date!
endTime: Time
images: [String]
isPublic: Boolean!
isRegisterable: Boolean!
latitude: Latitude
location: String
longitude: Longitude
organizationId: ID!
recurring: Boolean!
startDate: Date!
startTime: Time
title: String!
}
enum EventOrderByInput {
allDay_ASC
allDay_DESC
description_ASC
description_DESC
endDate_ASC
endDate_DESC
endTime_ASC
endTime_DESC
id_ASC
id_DESC
location_ASC
location_DESC
recurrance_ASC
recurrance_DESC
startDate_ASC
startDate_DESC
startTime_ASC
startTime_DESC
title_ASC
title_DESC
}
type EventVolunteer {
_id: ID!
createdAt: DateTime!
creator: User
event: Event
group: EventVolunteerGroup
isAssigned: Boolean
isInvited: Boolean
response: String
updatedAt: DateTime!
user: User!
}
type EventVolunteerGroup {
_id: ID!
createdAt: DateTime!
creator: User
event: Event
leader: User!
name: String
updatedAt: DateTime!
volunteers: [EventVolunteer]
volunteersRequired: Int
}
input EventVolunteerGroupInput {
eventId: ID!
name: String
volunteersRequired: Int
}
input EventVolunteerInput {
eventId: ID!
groupId: ID!
userId: ID!
}
enum EventVolunteerResponse {
NO
YES
}
input EventWhereInput {
description: String
description_contains: String
description_in: [String!]
description_not: String
description_not_in: [String!]
description_starts_with: String
id: ID
id_contains: ID
id_in: [ID!]
id_not: ID
id_not_in: [ID!]
id_starts_with: ID
location: String
location_contains: String
location_in: [String!]
location_not: String
location_not_in: [String!]
location_starts_with: String
organization_id: ID
title: String
title_contains: String
title_in: [String!]
title_not: String
title_not_in: [String!]
title_starts_with: String
}
type ExtendSession {
accessToken: String!
refreshToken: String!
}
type Feedback {
_id: ID!
createdAt: DateTime!
event: Event!
rating: Int!
review: String
updatedAt: DateTime!
}
input FeedbackInput {
eventId: ID!
rating: Int!
review: String
}
interface FieldError {
message: String!
path: [String!]!
}
input ForgotPasswordData {
newPassword: String!
otpToken: String!
userOtp: String!
}
enum Frequency {
DAILY
MONTHLY
WEEKLY
YEARLY
}
type Fund {
_id: ID!
campaigns: [FundraisingCampaign!]
createdAt: DateTime!
creator: User
isArchived: Boolean!
isDefault: Boolean!
name: String!
organizationId: ID!
refrenceNumber: String
taxDeductible: Boolean!
updatedAt: DateTime!
}
input FundCampaignInput {
currency: Currency!
endDate: Date!
fundId: ID!
fundingGoal: Float!
name: String!
startDate: Date!
}
input FundCampaignPledgeInput {
amount: Float!
campaignId: ID!
currency: Currency!
endDate: Date
startDate: Date
userIds: [ID!]!
}
input FundInput {
isArchived: Boolean!
isDefault: Boolean!
name: String!
organizationId: ID!
refrenceNumber: String
taxDeductible: Boolean!
}
input FundWhereInput {
name_contains: String
}
type FundraisingCampaign {
_id: ID!
createdAt: DateTime!
currency: Currency!
endDate: Date!
fundId: Fund!
fundingGoal: Float!
name: String!
pledges: [FundraisingCampaignPledge]
startDate: Date!
updatedAt: DateTime!
}
type FundraisingCampaignPledge {
_id: ID!
amount: Float!
campaigns: [FundraisingCampaign]!
currency: Currency!
endDate: Date
startDate: Date
users: [User]!
}
enum Gender {
FEMALE
MALE
OTHER
}
type Group {
_id: ID!
admins: [User!]!
createdAt: DateTime!
description: String
organization: Organization!
title: String!
updatedAt: DateTime!
}
type GroupChat {
_id: ID!
createdAt: DateTime!
creator: User
messages: [GroupChatMessage]
organization: Organization!
updatedAt: DateTime!
users: [User!]!
}
type GroupChatMessage {
_id: ID!
createdAt: DateTime!
groupChatMessageBelongsTo: GroupChat!
messageContent: String!
sender: User!
updatedAt: DateTime!
}
type InvalidCursor implements FieldError {
message: String!
path: [String!]!
}
enum ItemType {
Note
Regular
}
scalar JSON
type Language {
_id: ID!
createdAt: String!
en: String!
translation: [LanguageModel]
}
input LanguageInput {
en_value: String!
translation_lang_code: String!
translation_value: String!
}
type LanguageModel {
_id: ID!
createdAt: DateTime!
lang_code: String!
value: String!
verified: Boolean!
}
scalar Latitude
input LoginInput {
email: EmailAddress!
password: String!
}
scalar Longitude
enum MaritalStatus {
DIVORCED
ENGAGED
MARRIED
SEPERATED
SINGLE
WIDOWED
}
type MaximumLengthError implements FieldError {
message: String!
path: [String!]!
}
type MaximumValueError implements FieldError {
limit: Int!
message: String!
path: [String!]!
}
type MemberNotFoundError implements Error {
message: String!
}
type MembershipRequest {
_id: ID!
organization: Organization!
user: User!
}
input MembershipRequestsWhereInput {
id: ID
id_contains: ID
id_in: [ID!]
id_not: ID
id_not_in: [ID!]
id_starts_with: ID
user: UserWhereInput
}
type Message {
_id: ID!
createdAt: DateTime!
creator: User
imageUrl: URL