wabe 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1236 @@
1
+ """Phone custom scalar type"""
2
+ scalar Phone
3
+
4
+ enum AuthenticationProvider {
5
+ Google
6
+ }
7
+
8
+ enum SecondaryFactor {
9
+ EmailOTP
10
+ }
11
+
12
+ """User class"""
13
+ type User {
14
+ id: ID!
15
+ name: String
16
+ age: Int
17
+ acl: UserACLObject
18
+ createdAt: Date
19
+ updatedAt: Date
20
+ search: [String]
21
+ authentication: UserAuthentication
22
+ provider: AuthenticationProvider
23
+ isOauth: Boolean
24
+ email: Email
25
+ verifiedEmail: Boolean
26
+ role: Role
27
+ sessions: _SessionConnection
28
+ }
29
+
30
+ type UserACLObject {
31
+ users: [UserACLObjectUsersACL]
32
+ roles: [UserACLObjectRolesACL]
33
+ }
34
+
35
+ type UserACLObjectUsersACL {
36
+ userId: String!
37
+ read: Boolean!
38
+ write: Boolean!
39
+ }
40
+
41
+ type UserACLObjectRolesACL {
42
+ roleId: String!
43
+ read: Boolean!
44
+ write: Boolean!
45
+ }
46
+
47
+ """Date scalar type"""
48
+ scalar Date
49
+
50
+ type UserAuthentication {
51
+ emailPassword: UserAuthenticationEmailPassword
52
+ google: UserAuthenticationGoogle
53
+ }
54
+
55
+ type UserAuthenticationEmailPassword {
56
+ email: Email!
57
+ password: String!
58
+ }
59
+
60
+ """Email scalar type"""
61
+ scalar Email
62
+
63
+ type UserAuthenticationGoogle {
64
+ email: Email!
65
+ verifiedEmail: Boolean!
66
+ idToken: String!
67
+ }
68
+
69
+ type _SessionConnection {
70
+ totalCount: Int
71
+ edges: [_SessionEdge]
72
+ }
73
+
74
+ type _SessionEdge {
75
+ node: _Session!
76
+ }
77
+
78
+ """User class"""
79
+ input UserInput {
80
+ name: String
81
+ age: Int
82
+ acl: UserACLObjectInput
83
+ createdAt: Date
84
+ updatedAt: Date
85
+ search: [String]
86
+ authentication: UserAuthenticationInput
87
+ provider: AuthenticationProvider
88
+ isOauth: Boolean
89
+ email: Email
90
+ verifiedEmail: Boolean
91
+ role: RolePointerInput
92
+ sessions: _SessionRelationInput
93
+ }
94
+
95
+ input UserACLObjectInput {
96
+ users: [UserACLObjectUsersACLInput]
97
+ roles: [UserACLObjectRolesACLInput]
98
+ }
99
+
100
+ input UserACLObjectUsersACLInput {
101
+ userId: String!
102
+ read: Boolean!
103
+ write: Boolean!
104
+ }
105
+
106
+ input UserACLObjectRolesACLInput {
107
+ roleId: String!
108
+ read: Boolean!
109
+ write: Boolean!
110
+ }
111
+
112
+ input UserAuthenticationInput {
113
+ emailPassword: UserAuthenticationEmailPasswordInput
114
+ google: UserAuthenticationGoogleInput
115
+ }
116
+
117
+ input UserAuthenticationEmailPasswordInput {
118
+ email: Email!
119
+ password: String!
120
+ }
121
+
122
+ input UserAuthenticationGoogleInput {
123
+ email: Email!
124
+ verifiedEmail: Boolean!
125
+ idToken: String!
126
+ }
127
+
128
+ """Input to link an object to a pointer User"""
129
+ input UserPointerInput {
130
+ unlink: Boolean
131
+ link: ID
132
+ createAndLink: UserCreateFieldsInput
133
+ }
134
+
135
+ """User class"""
136
+ input UserCreateFieldsInput {
137
+ name: String
138
+ age: Int
139
+ acl: UserACLObjectCreateFieldsInput
140
+ createdAt: Date
141
+ updatedAt: Date
142
+ search: [String]
143
+ authentication: UserAuthenticationCreateFieldsInput
144
+ provider: AuthenticationProvider
145
+ isOauth: Boolean
146
+ email: Email
147
+ verifiedEmail: Boolean
148
+ role: RolePointerInput
149
+ sessions: _SessionRelationInput
150
+ }
151
+
152
+ input UserACLObjectCreateFieldsInput {
153
+ users: [UserACLObjectUsersACLCreateFieldsInput]
154
+ roles: [UserACLObjectRolesACLCreateFieldsInput]
155
+ }
156
+
157
+ input UserACLObjectUsersACLCreateFieldsInput {
158
+ userId: String
159
+ read: Boolean
160
+ write: Boolean
161
+ }
162
+
163
+ input UserACLObjectRolesACLCreateFieldsInput {
164
+ roleId: String
165
+ read: Boolean
166
+ write: Boolean
167
+ }
168
+
169
+ input UserAuthenticationCreateFieldsInput {
170
+ emailPassword: UserAuthenticationEmailPasswordCreateFieldsInput
171
+ google: UserAuthenticationGoogleCreateFieldsInput
172
+ }
173
+
174
+ input UserAuthenticationEmailPasswordCreateFieldsInput {
175
+ email: Email
176
+ password: String
177
+ }
178
+
179
+ input UserAuthenticationGoogleCreateFieldsInput {
180
+ email: Email
181
+ verifiedEmail: Boolean
182
+ idToken: String
183
+ }
184
+
185
+ """Input to add a relation to the class User"""
186
+ input UserRelationInput {
187
+ add: [ID!]
188
+ remove: [ID!]
189
+ createAndAdd: [UserCreateFieldsInput!]
190
+ }
191
+
192
+ type Post {
193
+ id: ID!
194
+ name: String!
195
+ test: File
196
+ acl: PostACLObject
197
+ createdAt: Date
198
+ updatedAt: Date
199
+ search: [String]
200
+ }
201
+
202
+ """File scalar type"""
203
+ scalar File
204
+
205
+ type PostACLObject {
206
+ users: [PostACLObjectUsersACL]
207
+ roles: [PostACLObjectRolesACL]
208
+ }
209
+
210
+ type PostACLObjectUsersACL {
211
+ userId: String!
212
+ read: Boolean!
213
+ write: Boolean!
214
+ }
215
+
216
+ type PostACLObjectRolesACL {
217
+ roleId: String!
218
+ read: Boolean!
219
+ write: Boolean!
220
+ }
221
+
222
+ input PostInput {
223
+ name: String!
224
+ test: File
225
+ acl: PostACLObjectInput
226
+ createdAt: Date
227
+ updatedAt: Date
228
+ search: [String]
229
+ }
230
+
231
+ input PostACLObjectInput {
232
+ users: [PostACLObjectUsersACLInput]
233
+ roles: [PostACLObjectRolesACLInput]
234
+ }
235
+
236
+ input PostACLObjectUsersACLInput {
237
+ userId: String!
238
+ read: Boolean!
239
+ write: Boolean!
240
+ }
241
+
242
+ input PostACLObjectRolesACLInput {
243
+ roleId: String!
244
+ read: Boolean!
245
+ write: Boolean!
246
+ }
247
+
248
+ """Input to link an object to a pointer Post"""
249
+ input PostPointerInput {
250
+ unlink: Boolean
251
+ link: ID
252
+ createAndLink: PostCreateFieldsInput
253
+ }
254
+
255
+ input PostCreateFieldsInput {
256
+ name: String
257
+ test: File
258
+ acl: PostACLObjectCreateFieldsInput
259
+ createdAt: Date
260
+ updatedAt: Date
261
+ search: [String]
262
+ }
263
+
264
+ input PostACLObjectCreateFieldsInput {
265
+ users: [PostACLObjectUsersACLCreateFieldsInput]
266
+ roles: [PostACLObjectRolesACLCreateFieldsInput]
267
+ }
268
+
269
+ input PostACLObjectUsersACLCreateFieldsInput {
270
+ userId: String
271
+ read: Boolean
272
+ write: Boolean
273
+ }
274
+
275
+ input PostACLObjectRolesACLCreateFieldsInput {
276
+ roleId: String
277
+ read: Boolean
278
+ write: Boolean
279
+ }
280
+
281
+ """Input to add a relation to the class Post"""
282
+ input PostRelationInput {
283
+ add: [ID!]
284
+ remove: [ID!]
285
+ createAndAdd: [PostCreateFieldsInput!]
286
+ }
287
+
288
+ type _Session {
289
+ id: ID!
290
+ user: User
291
+ accessToken: String!
292
+ accessTokenExpiresAt: Date!
293
+ refreshToken: String
294
+ refreshTokenExpiresAt: Date!
295
+ acl: _SessionACLObject
296
+ createdAt: Date
297
+ updatedAt: Date
298
+ search: [String]
299
+ }
300
+
301
+ type _SessionACLObject {
302
+ users: [_SessionACLObjectUsersACL]
303
+ roles: [_SessionACLObjectRolesACL]
304
+ }
305
+
306
+ type _SessionACLObjectUsersACL {
307
+ userId: String!
308
+ read: Boolean!
309
+ write: Boolean!
310
+ }
311
+
312
+ type _SessionACLObjectRolesACL {
313
+ roleId: String!
314
+ read: Boolean!
315
+ write: Boolean!
316
+ }
317
+
318
+ input _SessionInput {
319
+ user: UserPointerInput
320
+ accessToken: String!
321
+ accessTokenExpiresAt: Date!
322
+ refreshToken: String
323
+ refreshTokenExpiresAt: Date!
324
+ acl: _SessionACLObjectInput
325
+ createdAt: Date
326
+ updatedAt: Date
327
+ search: [String]
328
+ }
329
+
330
+ input _SessionACLObjectInput {
331
+ users: [_SessionACLObjectUsersACLInput]
332
+ roles: [_SessionACLObjectRolesACLInput]
333
+ }
334
+
335
+ input _SessionACLObjectUsersACLInput {
336
+ userId: String!
337
+ read: Boolean!
338
+ write: Boolean!
339
+ }
340
+
341
+ input _SessionACLObjectRolesACLInput {
342
+ roleId: String!
343
+ read: Boolean!
344
+ write: Boolean!
345
+ }
346
+
347
+ """Input to link an object to a pointer _Session"""
348
+ input _SessionPointerInput {
349
+ unlink: Boolean
350
+ link: ID
351
+ createAndLink: _SessionCreateFieldsInput
352
+ }
353
+
354
+ input _SessionCreateFieldsInput {
355
+ user: UserPointerInput
356
+ accessToken: String
357
+ accessTokenExpiresAt: Date
358
+ refreshToken: String
359
+ refreshTokenExpiresAt: Date
360
+ acl: _SessionACLObjectCreateFieldsInput
361
+ createdAt: Date
362
+ updatedAt: Date
363
+ search: [String]
364
+ }
365
+
366
+ input _SessionACLObjectCreateFieldsInput {
367
+ users: [_SessionACLObjectUsersACLCreateFieldsInput]
368
+ roles: [_SessionACLObjectRolesACLCreateFieldsInput]
369
+ }
370
+
371
+ input _SessionACLObjectUsersACLCreateFieldsInput {
372
+ userId: String
373
+ read: Boolean
374
+ write: Boolean
375
+ }
376
+
377
+ input _SessionACLObjectRolesACLCreateFieldsInput {
378
+ roleId: String
379
+ read: Boolean
380
+ write: Boolean
381
+ }
382
+
383
+ """Input to add a relation to the class _Session"""
384
+ input _SessionRelationInput {
385
+ add: [ID!]
386
+ remove: [ID!]
387
+ createAndAdd: [_SessionCreateFieldsInput!]
388
+ }
389
+
390
+ type Role {
391
+ id: ID!
392
+ name: String!
393
+ users: UserConnection
394
+ acl: RoleACLObject
395
+ createdAt: Date
396
+ updatedAt: Date
397
+ search: [String]
398
+ }
399
+
400
+ type UserConnection {
401
+ totalCount: Int
402
+ edges: [UserEdge]
403
+ }
404
+
405
+ type UserEdge {
406
+ node: User!
407
+ }
408
+
409
+ type RoleACLObject {
410
+ users: [RoleACLObjectUsersACL]
411
+ roles: [RoleACLObjectRolesACL]
412
+ }
413
+
414
+ type RoleACLObjectUsersACL {
415
+ userId: String!
416
+ read: Boolean!
417
+ write: Boolean!
418
+ }
419
+
420
+ type RoleACLObjectRolesACL {
421
+ roleId: String!
422
+ read: Boolean!
423
+ write: Boolean!
424
+ }
425
+
426
+ input RoleInput {
427
+ name: String!
428
+ users: UserRelationInput
429
+ acl: RoleACLObjectInput
430
+ createdAt: Date
431
+ updatedAt: Date
432
+ search: [String]
433
+ }
434
+
435
+ input RoleACLObjectInput {
436
+ users: [RoleACLObjectUsersACLInput]
437
+ roles: [RoleACLObjectRolesACLInput]
438
+ }
439
+
440
+ input RoleACLObjectUsersACLInput {
441
+ userId: String!
442
+ read: Boolean!
443
+ write: Boolean!
444
+ }
445
+
446
+ input RoleACLObjectRolesACLInput {
447
+ roleId: String!
448
+ read: Boolean!
449
+ write: Boolean!
450
+ }
451
+
452
+ """Input to link an object to a pointer Role"""
453
+ input RolePointerInput {
454
+ unlink: Boolean
455
+ link: ID
456
+ createAndLink: RoleCreateFieldsInput
457
+ }
458
+
459
+ input RoleCreateFieldsInput {
460
+ name: String
461
+ users: UserRelationInput
462
+ acl: RoleACLObjectCreateFieldsInput
463
+ createdAt: Date
464
+ updatedAt: Date
465
+ search: [String]
466
+ }
467
+
468
+ input RoleACLObjectCreateFieldsInput {
469
+ users: [RoleACLObjectUsersACLCreateFieldsInput]
470
+ roles: [RoleACLObjectRolesACLCreateFieldsInput]
471
+ }
472
+
473
+ input RoleACLObjectUsersACLCreateFieldsInput {
474
+ userId: String
475
+ read: Boolean
476
+ write: Boolean
477
+ }
478
+
479
+ input RoleACLObjectRolesACLCreateFieldsInput {
480
+ roleId: String
481
+ read: Boolean
482
+ write: Boolean
483
+ }
484
+
485
+ """Input to add a relation to the class Role"""
486
+ input RoleRelationInput {
487
+ add: [ID!]
488
+ remove: [ID!]
489
+ createAndAdd: [RoleCreateFieldsInput!]
490
+ }
491
+
492
+ type Query {
493
+ """User class"""
494
+ user(id: ID): User
495
+
496
+ """User class"""
497
+ users(where: UserWhereInput, offset: Int, first: Int): UserConnection!
498
+ post(id: ID): Post
499
+ posts(where: PostWhereInput, offset: Int, first: Int): PostConnection!
500
+ _session(id: ID): _Session
501
+ _sessions(where: _SessionWhereInput, offset: Int, first: Int): _SessionConnection!
502
+ role(id: ID): Role
503
+ roles(where: RoleWhereInput, offset: Int, first: Int): RoleConnection!
504
+
505
+ """Hello world description"""
506
+ helloWorld(name: String!): String
507
+ me: MeOutput
508
+ }
509
+
510
+ """User class"""
511
+ input UserWhereInput {
512
+ id: IdWhereInput
513
+ name: StringWhereInput
514
+ age: IntWhereInput
515
+ acl: UserACLObjectWhereInput
516
+ createdAt: DateWhereInput
517
+ updatedAt: DateWhereInput
518
+ search: SearchWhereInput
519
+ authentication: UserAuthenticationWhereInput
520
+ provider: AnyWhereInput
521
+ isOauth: BooleanWhereInput
522
+ email: EmailWhereInput
523
+ verifiedEmail: BooleanWhereInput
524
+ role: RoleWhereInput
525
+ sessions: _SessionWhereInput
526
+ OR: [UserWhereInput]
527
+ AND: [UserWhereInput]
528
+ }
529
+
530
+ input IdWhereInput {
531
+ equalTo: ID
532
+ notEqualTo: ID
533
+ in: [ID]
534
+ notIn: [ID]
535
+ }
536
+
537
+ input StringWhereInput {
538
+ equalTo: String
539
+ notEqualTo: String
540
+ in: [String]
541
+ notIn: [String]
542
+ }
543
+
544
+ input IntWhereInput {
545
+ equalTo: Int
546
+ notEqualTo: Int
547
+ lessThan: Int
548
+ lessThanOrEqualTo: Int
549
+ greaterThan: Int
550
+ greaterThanOrEqualTo: Int
551
+ in: [Int]
552
+ notIn: [Int]
553
+ }
554
+
555
+ input UserACLObjectWhereInput {
556
+ users: [UserACLObjectUsersACLWhereInput]
557
+ roles: [UserACLObjectRolesACLWhereInput]
558
+ OR: [UserACLObjectWhereInput]
559
+ AND: [UserACLObjectWhereInput]
560
+ }
561
+
562
+ input UserACLObjectUsersACLWhereInput {
563
+ userId: StringWhereInput
564
+ read: BooleanWhereInput
565
+ write: BooleanWhereInput
566
+ OR: [UserACLObjectUsersACLWhereInput]
567
+ AND: [UserACLObjectUsersACLWhereInput]
568
+ }
569
+
570
+ input BooleanWhereInput {
571
+ equalTo: Boolean
572
+ notEqualTo: Boolean
573
+ in: [Boolean]
574
+ notIn: [Boolean]
575
+ }
576
+
577
+ input UserACLObjectRolesACLWhereInput {
578
+ roleId: StringWhereInput
579
+ read: BooleanWhereInput
580
+ write: BooleanWhereInput
581
+ OR: [UserACLObjectRolesACLWhereInput]
582
+ AND: [UserACLObjectRolesACLWhereInput]
583
+ }
584
+
585
+ input DateWhereInput {
586
+ equalTo: Date
587
+ notEqualTo: Date
588
+ in: [Date]
589
+ notIn: [Date]
590
+ lessThan: Date
591
+ lessThanOrEqualTo: Date
592
+ greaterThan: Date
593
+ greaterThanOrEqualTo: Date
594
+ }
595
+
596
+ input SearchWhereInput {
597
+ contains: Search
598
+ }
599
+
600
+ """Search scalar to tokenize and search for all searchable fields"""
601
+ scalar Search
602
+
603
+ input UserAuthenticationWhereInput {
604
+ emailPassword: UserAuthenticationEmailPasswordWhereInput
605
+ google: UserAuthenticationGoogleWhereInput
606
+ OR: [UserAuthenticationWhereInput]
607
+ AND: [UserAuthenticationWhereInput]
608
+ }
609
+
610
+ input UserAuthenticationEmailPasswordWhereInput {
611
+ email: EmailWhereInput
612
+ password: StringWhereInput
613
+ OR: [UserAuthenticationEmailPasswordWhereInput]
614
+ AND: [UserAuthenticationEmailPasswordWhereInput]
615
+ }
616
+
617
+ input EmailWhereInput {
618
+ equalTo: Email
619
+ notEqualTo: Email
620
+ in: [Email]
621
+ notIn: [Email]
622
+ }
623
+
624
+ input UserAuthenticationGoogleWhereInput {
625
+ email: EmailWhereInput
626
+ verifiedEmail: BooleanWhereInput
627
+ idToken: StringWhereInput
628
+ OR: [UserAuthenticationGoogleWhereInput]
629
+ AND: [UserAuthenticationGoogleWhereInput]
630
+ }
631
+
632
+ input AnyWhereInput {
633
+ equalTo: Any
634
+ notEqualTo: Any
635
+ }
636
+
637
+ """
638
+ The Any scalar type is used in operations and types that involve any type of value.
639
+ """
640
+ scalar Any
641
+
642
+ input RoleWhereInput {
643
+ id: IdWhereInput
644
+ name: StringWhereInput
645
+ users: UserWhereInput
646
+ acl: RoleACLObjectWhereInput
647
+ createdAt: DateWhereInput
648
+ updatedAt: DateWhereInput
649
+ search: SearchWhereInput
650
+ OR: [RoleWhereInput]
651
+ AND: [RoleWhereInput]
652
+ }
653
+
654
+ input RoleACLObjectWhereInput {
655
+ users: [RoleACLObjectUsersACLWhereInput]
656
+ roles: [RoleACLObjectRolesACLWhereInput]
657
+ OR: [RoleACLObjectWhereInput]
658
+ AND: [RoleACLObjectWhereInput]
659
+ }
660
+
661
+ input RoleACLObjectUsersACLWhereInput {
662
+ userId: StringWhereInput
663
+ read: BooleanWhereInput
664
+ write: BooleanWhereInput
665
+ OR: [RoleACLObjectUsersACLWhereInput]
666
+ AND: [RoleACLObjectUsersACLWhereInput]
667
+ }
668
+
669
+ input RoleACLObjectRolesACLWhereInput {
670
+ roleId: StringWhereInput
671
+ read: BooleanWhereInput
672
+ write: BooleanWhereInput
673
+ OR: [RoleACLObjectRolesACLWhereInput]
674
+ AND: [RoleACLObjectRolesACLWhereInput]
675
+ }
676
+
677
+ input _SessionWhereInput {
678
+ id: IdWhereInput
679
+ user: UserWhereInput
680
+ accessToken: StringWhereInput
681
+ accessTokenExpiresAt: DateWhereInput
682
+ refreshToken: StringWhereInput
683
+ refreshTokenExpiresAt: DateWhereInput
684
+ acl: _SessionACLObjectWhereInput
685
+ createdAt: DateWhereInput
686
+ updatedAt: DateWhereInput
687
+ search: SearchWhereInput
688
+ OR: [_SessionWhereInput]
689
+ AND: [_SessionWhereInput]
690
+ }
691
+
692
+ input _SessionACLObjectWhereInput {
693
+ users: [_SessionACLObjectUsersACLWhereInput]
694
+ roles: [_SessionACLObjectRolesACLWhereInput]
695
+ OR: [_SessionACLObjectWhereInput]
696
+ AND: [_SessionACLObjectWhereInput]
697
+ }
698
+
699
+ input _SessionACLObjectUsersACLWhereInput {
700
+ userId: StringWhereInput
701
+ read: BooleanWhereInput
702
+ write: BooleanWhereInput
703
+ OR: [_SessionACLObjectUsersACLWhereInput]
704
+ AND: [_SessionACLObjectUsersACLWhereInput]
705
+ }
706
+
707
+ input _SessionACLObjectRolesACLWhereInput {
708
+ roleId: StringWhereInput
709
+ read: BooleanWhereInput
710
+ write: BooleanWhereInput
711
+ OR: [_SessionACLObjectRolesACLWhereInput]
712
+ AND: [_SessionACLObjectRolesACLWhereInput]
713
+ }
714
+
715
+ type PostConnection {
716
+ totalCount: Int
717
+ edges: [PostEdge]
718
+ }
719
+
720
+ type PostEdge {
721
+ node: Post!
722
+ }
723
+
724
+ input PostWhereInput {
725
+ id: IdWhereInput
726
+ name: StringWhereInput
727
+ test: FileWhereInput
728
+ acl: PostACLObjectWhereInput
729
+ createdAt: DateWhereInput
730
+ updatedAt: DateWhereInput
731
+ search: SearchWhereInput
732
+ OR: [PostWhereInput]
733
+ AND: [PostWhereInput]
734
+ }
735
+
736
+ input FileWhereInput {
737
+ equalTo: File
738
+ notEqualTo: File
739
+ in: [File]
740
+ notInt: [File]
741
+ }
742
+
743
+ input PostACLObjectWhereInput {
744
+ users: [PostACLObjectUsersACLWhereInput]
745
+ roles: [PostACLObjectRolesACLWhereInput]
746
+ OR: [PostACLObjectWhereInput]
747
+ AND: [PostACLObjectWhereInput]
748
+ }
749
+
750
+ input PostACLObjectUsersACLWhereInput {
751
+ userId: StringWhereInput
752
+ read: BooleanWhereInput
753
+ write: BooleanWhereInput
754
+ OR: [PostACLObjectUsersACLWhereInput]
755
+ AND: [PostACLObjectUsersACLWhereInput]
756
+ }
757
+
758
+ input PostACLObjectRolesACLWhereInput {
759
+ roleId: StringWhereInput
760
+ read: BooleanWhereInput
761
+ write: BooleanWhereInput
762
+ OR: [PostACLObjectRolesACLWhereInput]
763
+ AND: [PostACLObjectRolesACLWhereInput]
764
+ }
765
+
766
+ type RoleConnection {
767
+ totalCount: Int
768
+ edges: [RoleEdge]
769
+ }
770
+
771
+ type RoleEdge {
772
+ node: Role!
773
+ }
774
+
775
+ type MeOutput {
776
+ user: User
777
+ }
778
+
779
+ type Mutation {
780
+ """User class"""
781
+ createUser(input: CreateUserInput): CreateUserPayload
782
+
783
+ """User class"""
784
+ createUsers(input: CreateUsersInput): UserConnection!
785
+
786
+ """User class"""
787
+ updateUser(input: UpdateUserInput): UpdateUserPayload
788
+
789
+ """User class"""
790
+ updateUsers(input: UpdateUsersInput): UserConnection!
791
+
792
+ """User class"""
793
+ deleteUser(input: DeleteUserInput): DeleteUserPayload
794
+
795
+ """User class"""
796
+ deleteUsers(input: DeleteUsersInput): UserConnection!
797
+ createPost(input: CreatePostInput): CreatePostPayload
798
+ createPosts(input: CreatePostsInput): PostConnection!
799
+ updatePost(input: UpdatePostInput): UpdatePostPayload
800
+ updatePosts(input: UpdatePostsInput): PostConnection!
801
+ deletePost(input: DeletePostInput): DeletePostPayload
802
+ deletePosts(input: DeletePostsInput): PostConnection!
803
+ create_Session(input: Create_SessionInput): Create_SessionPayload
804
+ create_Sessions(input: Create_SessionsInput): _SessionConnection!
805
+ update_Session(input: Update_SessionInput): Update_SessionPayload
806
+ update_Sessions(input: Update_SessionsInput): _SessionConnection!
807
+ delete_Session(input: Delete_SessionInput): Delete_SessionPayload
808
+ delete_Sessions(input: Delete_SessionsInput): _SessionConnection!
809
+ createRole(input: CreateRoleInput): CreateRolePayload
810
+ createRoles(input: CreateRolesInput): RoleConnection!
811
+ updateRole(input: UpdateRoleInput): UpdateRolePayload
812
+ updateRoles(input: UpdateRolesInput): RoleConnection!
813
+ deleteRole(input: DeleteRoleInput): DeleteRolePayload
814
+ deleteRoles(input: DeleteRolesInput): RoleConnection!
815
+ createMutation(input: CreateMutationInput): Boolean!
816
+ customMutation(input: CustomMutationInput): Int
817
+ secondCustomMutation(input: SecondCustomMutationInput): Int
818
+ signInWith(input: SignInWithInput): SignInWithOutput
819
+ signUpWith(input: SignUpWithInput): SignUpWithOutput
820
+ signOut: Boolean
821
+ refresh(input: RefreshInput): RefreshSessionOutput
822
+ verifyChallenge(input: VerifyChallengeInput): Boolean
823
+ }
824
+
825
+ type CreateUserPayload {
826
+ user: User
827
+ clientMutationId: String
828
+ }
829
+
830
+ input CreateUserInput {
831
+ fields: UserCreateFieldsInput
832
+ }
833
+
834
+ input CreateUsersInput {
835
+ fields: [UserCreateFieldsInput]!
836
+ offset: Int
837
+ first: Int
838
+ }
839
+
840
+ type UpdateUserPayload {
841
+ user: User
842
+ clientMutationId: String
843
+ }
844
+
845
+ input UpdateUserInput {
846
+ id: ID
847
+ fields: UserUpdateFieldsInput
848
+ }
849
+
850
+ """User class"""
851
+ input UserUpdateFieldsInput {
852
+ name: String
853
+ age: Int
854
+ acl: UserACLObjectUpdateFieldsInput
855
+ createdAt: Date
856
+ updatedAt: Date
857
+ search: [String]
858
+ authentication: UserAuthenticationUpdateFieldsInput
859
+ provider: AuthenticationProvider
860
+ isOauth: Boolean
861
+ email: Email
862
+ verifiedEmail: Boolean
863
+ role: RolePointerInput
864
+ sessions: _SessionRelationInput
865
+ }
866
+
867
+ input UserACLObjectUpdateFieldsInput {
868
+ users: [UserACLObjectUsersACLUpdateFieldsInput]
869
+ roles: [UserACLObjectRolesACLUpdateFieldsInput]
870
+ }
871
+
872
+ input UserACLObjectUsersACLUpdateFieldsInput {
873
+ userId: String
874
+ read: Boolean
875
+ write: Boolean
876
+ }
877
+
878
+ input UserACLObjectRolesACLUpdateFieldsInput {
879
+ roleId: String
880
+ read: Boolean
881
+ write: Boolean
882
+ }
883
+
884
+ input UserAuthenticationUpdateFieldsInput {
885
+ emailPassword: UserAuthenticationEmailPasswordUpdateFieldsInput
886
+ google: UserAuthenticationGoogleUpdateFieldsInput
887
+ }
888
+
889
+ input UserAuthenticationEmailPasswordUpdateFieldsInput {
890
+ email: Email
891
+ password: String
892
+ }
893
+
894
+ input UserAuthenticationGoogleUpdateFieldsInput {
895
+ email: Email
896
+ verifiedEmail: Boolean
897
+ idToken: String
898
+ }
899
+
900
+ input UpdateUsersInput {
901
+ fields: UserUpdateFieldsInput
902
+ where: UserWhereInput
903
+ offset: Int
904
+ first: Int
905
+ }
906
+
907
+ type DeleteUserPayload {
908
+ user: User
909
+ clientMutationId: String
910
+ }
911
+
912
+ input DeleteUserInput {
913
+ id: ID
914
+ }
915
+
916
+ input DeleteUsersInput {
917
+ where: UserWhereInput
918
+ }
919
+
920
+ type CreatePostPayload {
921
+ post: Post
922
+ clientMutationId: String
923
+ }
924
+
925
+ input CreatePostInput {
926
+ fields: PostCreateFieldsInput
927
+ }
928
+
929
+ input CreatePostsInput {
930
+ fields: [PostCreateFieldsInput]!
931
+ offset: Int
932
+ first: Int
933
+ }
934
+
935
+ type UpdatePostPayload {
936
+ post: Post
937
+ clientMutationId: String
938
+ }
939
+
940
+ input UpdatePostInput {
941
+ id: ID
942
+ fields: PostUpdateFieldsInput
943
+ }
944
+
945
+ input PostUpdateFieldsInput {
946
+ name: String
947
+ test: File
948
+ acl: PostACLObjectUpdateFieldsInput
949
+ createdAt: Date
950
+ updatedAt: Date
951
+ search: [String]
952
+ }
953
+
954
+ input PostACLObjectUpdateFieldsInput {
955
+ users: [PostACLObjectUsersACLUpdateFieldsInput]
956
+ roles: [PostACLObjectRolesACLUpdateFieldsInput]
957
+ }
958
+
959
+ input PostACLObjectUsersACLUpdateFieldsInput {
960
+ userId: String
961
+ read: Boolean
962
+ write: Boolean
963
+ }
964
+
965
+ input PostACLObjectRolesACLUpdateFieldsInput {
966
+ roleId: String
967
+ read: Boolean
968
+ write: Boolean
969
+ }
970
+
971
+ input UpdatePostsInput {
972
+ fields: PostUpdateFieldsInput
973
+ where: PostWhereInput
974
+ offset: Int
975
+ first: Int
976
+ }
977
+
978
+ type DeletePostPayload {
979
+ post: Post
980
+ clientMutationId: String
981
+ }
982
+
983
+ input DeletePostInput {
984
+ id: ID
985
+ }
986
+
987
+ input DeletePostsInput {
988
+ where: PostWhereInput
989
+ }
990
+
991
+ type Create_SessionPayload {
992
+ _session: _Session
993
+ clientMutationId: String
994
+ }
995
+
996
+ input Create_SessionInput {
997
+ fields: _SessionCreateFieldsInput
998
+ }
999
+
1000
+ input Create_SessionsInput {
1001
+ fields: [_SessionCreateFieldsInput]!
1002
+ offset: Int
1003
+ first: Int
1004
+ }
1005
+
1006
+ type Update_SessionPayload {
1007
+ _session: _Session
1008
+ clientMutationId: String
1009
+ }
1010
+
1011
+ input Update_SessionInput {
1012
+ id: ID
1013
+ fields: _SessionUpdateFieldsInput
1014
+ }
1015
+
1016
+ input _SessionUpdateFieldsInput {
1017
+ user: UserPointerInput
1018
+ accessToken: String
1019
+ accessTokenExpiresAt: Date
1020
+ refreshToken: String
1021
+ refreshTokenExpiresAt: Date
1022
+ acl: _SessionACLObjectUpdateFieldsInput
1023
+ createdAt: Date
1024
+ updatedAt: Date
1025
+ search: [String]
1026
+ }
1027
+
1028
+ input _SessionACLObjectUpdateFieldsInput {
1029
+ users: [_SessionACLObjectUsersACLUpdateFieldsInput]
1030
+ roles: [_SessionACLObjectRolesACLUpdateFieldsInput]
1031
+ }
1032
+
1033
+ input _SessionACLObjectUsersACLUpdateFieldsInput {
1034
+ userId: String
1035
+ read: Boolean
1036
+ write: Boolean
1037
+ }
1038
+
1039
+ input _SessionACLObjectRolesACLUpdateFieldsInput {
1040
+ roleId: String
1041
+ read: Boolean
1042
+ write: Boolean
1043
+ }
1044
+
1045
+ input Update_SessionsInput {
1046
+ fields: _SessionUpdateFieldsInput
1047
+ where: _SessionWhereInput
1048
+ offset: Int
1049
+ first: Int
1050
+ }
1051
+
1052
+ type Delete_SessionPayload {
1053
+ _session: _Session
1054
+ clientMutationId: String
1055
+ }
1056
+
1057
+ input Delete_SessionInput {
1058
+ id: ID
1059
+ }
1060
+
1061
+ input Delete_SessionsInput {
1062
+ where: _SessionWhereInput
1063
+ }
1064
+
1065
+ type CreateRolePayload {
1066
+ role: Role
1067
+ clientMutationId: String
1068
+ }
1069
+
1070
+ input CreateRoleInput {
1071
+ fields: RoleCreateFieldsInput
1072
+ }
1073
+
1074
+ input CreateRolesInput {
1075
+ fields: [RoleCreateFieldsInput]!
1076
+ offset: Int
1077
+ first: Int
1078
+ }
1079
+
1080
+ type UpdateRolePayload {
1081
+ role: Role
1082
+ clientMutationId: String
1083
+ }
1084
+
1085
+ input UpdateRoleInput {
1086
+ id: ID
1087
+ fields: RoleUpdateFieldsInput
1088
+ }
1089
+
1090
+ input RoleUpdateFieldsInput {
1091
+ name: String
1092
+ users: UserRelationInput
1093
+ acl: RoleACLObjectUpdateFieldsInput
1094
+ createdAt: Date
1095
+ updatedAt: Date
1096
+ search: [String]
1097
+ }
1098
+
1099
+ input RoleACLObjectUpdateFieldsInput {
1100
+ users: [RoleACLObjectUsersACLUpdateFieldsInput]
1101
+ roles: [RoleACLObjectRolesACLUpdateFieldsInput]
1102
+ }
1103
+
1104
+ input RoleACLObjectUsersACLUpdateFieldsInput {
1105
+ userId: String
1106
+ read: Boolean
1107
+ write: Boolean
1108
+ }
1109
+
1110
+ input RoleACLObjectRolesACLUpdateFieldsInput {
1111
+ roleId: String
1112
+ read: Boolean
1113
+ write: Boolean
1114
+ }
1115
+
1116
+ input UpdateRolesInput {
1117
+ fields: RoleUpdateFieldsInput
1118
+ where: RoleWhereInput
1119
+ offset: Int
1120
+ first: Int
1121
+ }
1122
+
1123
+ type DeleteRolePayload {
1124
+ role: Role
1125
+ clientMutationId: String
1126
+ }
1127
+
1128
+ input DeleteRoleInput {
1129
+ id: ID
1130
+ }
1131
+
1132
+ input DeleteRolesInput {
1133
+ where: RoleWhereInput
1134
+ }
1135
+
1136
+ input CreateMutationInput {
1137
+ name: Int!
1138
+ }
1139
+
1140
+ input CustomMutationInput {
1141
+ a: Int!
1142
+ b: Int!
1143
+ }
1144
+
1145
+ input SecondCustomMutationInput {
1146
+ sum: SecondCustomMutationSumInput
1147
+ }
1148
+
1149
+ input SecondCustomMutationSumInput {
1150
+ a: Int!
1151
+ b: Int!
1152
+ }
1153
+
1154
+ type SignInWithOutput {
1155
+ id: String
1156
+ accessToken: String
1157
+ refreshToken: String
1158
+ }
1159
+
1160
+ input SignInWithInput {
1161
+ authentication: SignInWithAuthenticationInput
1162
+ }
1163
+
1164
+ input SignInWithAuthenticationInput {
1165
+ emailPassword: SignInWithAuthenticationEmailPasswordInput
1166
+ google: SignInWithAuthenticationGoogleInput
1167
+ otp: SignInWithAuthenticationOtpInput
1168
+ secondaryFactor: SecondaryFactor
1169
+ }
1170
+
1171
+ input SignInWithAuthenticationEmailPasswordInput {
1172
+ email: Email!
1173
+ password: String!
1174
+ }
1175
+
1176
+ input SignInWithAuthenticationGoogleInput {
1177
+ authorizationCode: String!
1178
+ codeVerifier: String!
1179
+ }
1180
+
1181
+ input SignInWithAuthenticationOtpInput {
1182
+ code: String
1183
+ }
1184
+
1185
+ type SignUpWithOutput {
1186
+ id: String
1187
+ accessToken: String!
1188
+ refreshToken: String!
1189
+ }
1190
+
1191
+ input SignUpWithInput {
1192
+ authentication: SignUpWithAuthenticationInput
1193
+ }
1194
+
1195
+ input SignUpWithAuthenticationInput {
1196
+ emailPassword: SignUpWithAuthenticationEmailPasswordInput
1197
+ google: SignUpWithAuthenticationGoogleInput
1198
+ otp: SignUpWithAuthenticationOtpInput
1199
+ secondaryFactor: SecondaryFactor
1200
+ }
1201
+
1202
+ input SignUpWithAuthenticationEmailPasswordInput {
1203
+ email: Email!
1204
+ password: String!
1205
+ }
1206
+
1207
+ input SignUpWithAuthenticationGoogleInput {
1208
+ authorizationCode: String!
1209
+ codeVerifier: String!
1210
+ }
1211
+
1212
+ input SignUpWithAuthenticationOtpInput {
1213
+ code: String
1214
+ }
1215
+
1216
+ type RefreshSessionOutput {
1217
+ accessToken: String!
1218
+ refreshToken: String!
1219
+ }
1220
+
1221
+ input RefreshInput {
1222
+ accessToken: String!
1223
+ refreshToken: String!
1224
+ }
1225
+
1226
+ input VerifyChallengeInput {
1227
+ factor: VerifyChallengeFactorInput
1228
+ }
1229
+
1230
+ input VerifyChallengeFactorInput {
1231
+ otp: VerifyChallengeFactorOtpInput
1232
+ }
1233
+
1234
+ input VerifyChallengeFactorOtpInput {
1235
+ code: String
1236
+ }