forked from dappforce/polkaverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-global-types.ts
1243 lines (1225 loc) · 42.8 KB
/
graphql-global-types.ts
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
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
//==============================================================
// START Enums and Input Objects
//==============================================================
export enum EventName {
AccountFollowed = 'AccountFollowed',
AccountUnfollowed = 'AccountUnfollowed',
CommentCreated = 'CommentCreated',
CommentDeleted = 'CommentDeleted',
CommentReactionCreated = 'CommentReactionCreated',
CommentReactionDeleted = 'CommentReactionDeleted',
CommentReactionUpdated = 'CommentReactionUpdated',
CommentReplyCreated = 'CommentReplyCreated',
CommentReplyDeleted = 'CommentReplyDeleted',
CommentReplyReactionCreated = 'CommentReplyReactionCreated',
CommentReplyReactionDeleted = 'CommentReplyReactionDeleted',
CommentReplyReactionUpdated = 'CommentReplyReactionUpdated',
CommentReplyShared = 'CommentReplyShared',
CommentReplyUpdated = 'CommentReplyUpdated',
CommentShared = 'CommentShared',
CommentUpdated = 'CommentUpdated',
PostCreated = 'PostCreated',
PostDeleted = 'PostDeleted',
PostFollowed = 'PostFollowed',
PostMoved = 'PostMoved',
PostReactionCreated = 'PostReactionCreated',
PostReactionDeleted = 'PostReactionDeleted',
PostReactionUpdated = 'PostReactionUpdated',
PostShared = 'PostShared',
PostUnfollowed = 'PostUnfollowed',
PostUpdated = 'PostUpdated',
ProfileUpdated = 'ProfileUpdated',
SpaceCreated = 'SpaceCreated',
SpaceFollowed = 'SpaceFollowed',
SpaceOwnershipTransferAccepted = 'SpaceOwnershipTransferAccepted',
SpaceUnfollowed = 'SpaceUnfollowed',
SpaceUpdated = 'SpaceUpdated',
}
export enum PostKind {
Comment = 'Comment',
RegularPost = 'RegularPost',
SharedPost = 'SharedPost',
}
export enum ReactionKind {
Downvote = 'Downvote',
Upvote = 'Upvote',
}
export enum Status {
Active = 'Active',
Deleted = 'Deleted',
}
export interface AccountFollowersWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
followerAccount_isNull?: boolean | null
followerAccount?: AccountWhereInput | null
followingAccount_isNull?: boolean | null
followingAccount?: AccountWhereInput | null
AND?: AccountFollowersWhereInput[] | null
OR?: AccountFollowersWhereInput[] | null
}
export interface AccountWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
profileSpace_isNull?: boolean | null
profileSpace?: SpaceWhereInput | null
followers_every?: AccountFollowersWhereInput | null
followers_some?: AccountFollowersWhereInput | null
followers_none?: AccountFollowersWhereInput | null
followersCount_isNull?: boolean | null
followersCount_eq?: number | null
followersCount_not_eq?: number | null
followersCount_gt?: number | null
followersCount_gte?: number | null
followersCount_lt?: number | null
followersCount_lte?: number | null
followersCount_in?: number[] | null
followersCount_not_in?: number[] | null
followingAccounts_every?: AccountFollowersWhereInput | null
followingAccounts_some?: AccountFollowersWhereInput | null
followingAccounts_none?: AccountFollowersWhereInput | null
followingAccountsCount_isNull?: boolean | null
followingAccountsCount_eq?: number | null
followingAccountsCount_not_eq?: number | null
followingAccountsCount_gt?: number | null
followingAccountsCount_gte?: number | null
followingAccountsCount_lt?: number | null
followingAccountsCount_lte?: number | null
followingAccountsCount_in?: number[] | null
followingAccountsCount_not_in?: number[] | null
posts_every?: PostWhereInput | null
posts_some?: PostWhereInput | null
posts_none?: PostWhereInput | null
followingPostsCount_isNull?: boolean | null
followingPostsCount_eq?: number | null
followingPostsCount_not_eq?: number | null
followingPostsCount_gt?: number | null
followingPostsCount_gte?: number | null
followingPostsCount_lt?: number | null
followingPostsCount_lte?: number | null
followingPostsCount_in?: number[] | null
followingPostsCount_not_in?: number[] | null
spacesCreated_every?: SpaceWhereInput | null
spacesCreated_some?: SpaceWhereInput | null
spacesCreated_none?: SpaceWhereInput | null
spacesOwned_every?: SpaceWhereInput | null
spacesOwned_some?: SpaceWhereInput | null
spacesOwned_none?: SpaceWhereInput | null
spacesFollowed_every?: SpaceFollowersWhereInput | null
spacesFollowed_some?: SpaceFollowersWhereInput | null
spacesFollowed_none?: SpaceFollowersWhereInput | null
followingSpacesCount_isNull?: boolean | null
followingSpacesCount_eq?: number | null
followingSpacesCount_not_eq?: number | null
followingSpacesCount_gt?: number | null
followingSpacesCount_gte?: number | null
followingSpacesCount_lt?: number | null
followingSpacesCount_lte?: number | null
followingSpacesCount_in?: number[] | null
followingSpacesCount_not_in?: number[] | null
feeds_every?: NewsFeedWhereInput | null
feeds_some?: NewsFeedWhereInput | null
feeds_none?: NewsFeedWhereInput | null
notifications_every?: NotificationWhereInput | null
notifications_some?: NotificationWhereInput | null
notifications_none?: NotificationWhereInput | null
activities_every?: ActivityWhereInput | null
activities_some?: ActivityWhereInput | null
activities_none?: ActivityWhereInput | null
reactions_every?: ReactionWhereInput | null
reactions_some?: ReactionWhereInput | null
reactions_none?: ReactionWhereInput | null
updatedAtTime_isNull?: boolean | null
updatedAtTime_eq?: any | null
updatedAtTime_not_eq?: any | null
updatedAtTime_gt?: any | null
updatedAtTime_gte?: any | null
updatedAtTime_lt?: any | null
updatedAtTime_lte?: any | null
updatedAtTime_in?: any[] | null
updatedAtTime_not_in?: any[] | null
updatedAtBlock_isNull?: boolean | null
updatedAtBlock_eq?: any | null
updatedAtBlock_not_eq?: any | null
updatedAtBlock_gt?: any | null
updatedAtBlock_gte?: any | null
updatedAtBlock_lt?: any | null
updatedAtBlock_lte?: any | null
updatedAtBlock_in?: any[] | null
updatedAtBlock_not_in?: any[] | null
AND?: AccountWhereInput[] | null
OR?: AccountWhereInput[] | null
}
export interface ActivityWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
account_isNull?: boolean | null
account?: AccountWhereInput | null
blockNumber_isNull?: boolean | null
blockNumber_eq?: any | null
blockNumber_not_eq?: any | null
blockNumber_gt?: any | null
blockNumber_gte?: any | null
blockNumber_lt?: any | null
blockNumber_lte?: any | null
blockNumber_in?: any[] | null
blockNumber_not_in?: any[] | null
eventIndex_isNull?: boolean | null
eventIndex_eq?: number | null
eventIndex_not_eq?: number | null
eventIndex_gt?: number | null
eventIndex_gte?: number | null
eventIndex_lt?: number | null
eventIndex_lte?: number | null
eventIndex_in?: number[] | null
eventIndex_not_in?: number[] | null
event_isNull?: boolean | null
event_eq?: EventName | null
event_not_eq?: EventName | null
event_in?: EventName[] | null
event_not_in?: EventName[] | null
followingAccount_isNull?: boolean | null
followingAccount?: AccountWhereInput | null
space_isNull?: boolean | null
space?: SpaceWhereInput | null
spacePrev_isNull?: boolean | null
spacePrev?: SpaceWhereInput | null
newOwner_isNull?: boolean | null
newOwner?: AccountWhereInput | null
oldOwner_isNull?: boolean | null
oldOwner?: AccountWhereInput | null
post_isNull?: boolean | null
post?: PostWhereInput | null
reaction_isNull?: boolean | null
reaction?: ReactionWhereInput | null
date_isNull?: boolean | null
date_eq?: any | null
date_not_eq?: any | null
date_gt?: any | null
date_gte?: any | null
date_lt?: any | null
date_lte?: any | null
date_in?: any[] | null
date_not_in?: any[] | null
aggregated_isNull?: boolean | null
aggregated_eq?: boolean | null
aggregated_not_eq?: boolean | null
aggCount_isNull?: boolean | null
aggCount_eq?: any | null
aggCount_not_eq?: any | null
aggCount_gt?: any | null
aggCount_gte?: any | null
aggCount_lt?: any | null
aggCount_lte?: any | null
aggCount_in?: any[] | null
aggCount_not_in?: any[] | null
AND?: ActivityWhereInput[] | null
OR?: ActivityWhereInput[] | null
}
export interface CommentFollowersWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
followerAccount_isNull?: boolean | null
followerAccount?: AccountWhereInput | null
followingComment_isNull?: boolean | null
followingComment?: PostWhereInput | null
AND?: CommentFollowersWhereInput[] | null
OR?: CommentFollowersWhereInput[] | null
}
export interface NewsFeedWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
account_isNull?: boolean | null
account?: AccountWhereInput | null
activity_isNull?: boolean | null
activity?: ActivityWhereInput | null
AND?: NewsFeedWhereInput[] | null
OR?: NewsFeedWhereInput[] | null
}
export interface NotificationWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
account_isNull?: boolean | null
account?: AccountWhereInput | null
activity_isNull?: boolean | null
activity?: ActivityWhereInput | null
AND?: NotificationWhereInput[] | null
OR?: NotificationWhereInput[] | null
}
export interface PostFollowersWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
followerAccount_isNull?: boolean | null
followerAccount?: AccountWhereInput | null
followingPost_isNull?: boolean | null
followingPost?: PostWhereInput | null
AND?: PostFollowersWhereInput[] | null
OR?: PostFollowersWhereInput[] | null
}
export interface PostWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
parentPost_isNull?: boolean | null
parentPost?: PostWhereInput | null
rootPost_isNull?: boolean | null
rootPost?: PostWhereInput | null
sharedPost_isNull?: boolean | null
sharedPost?: PostWhereInput | null
isComment_isNull?: boolean | null
isComment_eq?: boolean | null
isComment_not_eq?: boolean | null
hidden_isNull?: boolean | null
hidden_eq?: boolean | null
hidden_not_eq?: boolean | null
ownedByAccount_isNull?: boolean | null
ownedByAccount?: AccountWhereInput | null
createdByAccount_isNull?: boolean | null
createdByAccount?: AccountWhereInput | null
createdAtBlock_isNull?: boolean | null
createdAtBlock_eq?: any | null
createdAtBlock_not_eq?: any | null
createdAtBlock_gt?: any | null
createdAtBlock_gte?: any | null
createdAtBlock_lt?: any | null
createdAtBlock_lte?: any | null
createdAtBlock_in?: any[] | null
createdAtBlock_not_in?: any[] | null
createdAtTime_isNull?: boolean | null
createdAtTime_eq?: any | null
createdAtTime_not_eq?: any | null
createdAtTime_gt?: any | null
createdAtTime_gte?: any | null
createdAtTime_lt?: any | null
createdAtTime_lte?: any | null
createdAtTime_in?: any[] | null
createdAtTime_not_in?: any[] | null
createdOnDay_isNull?: boolean | null
createdOnDay_eq?: any | null
createdOnDay_not_eq?: any | null
createdOnDay_gt?: any | null
createdOnDay_gte?: any | null
createdOnDay_lt?: any | null
createdOnDay_lte?: any | null
createdOnDay_in?: any[] | null
createdOnDay_not_in?: any[] | null
updatedAtTime_isNull?: boolean | null
updatedAtTime_eq?: any | null
updatedAtTime_not_eq?: any | null
updatedAtTime_gt?: any | null
updatedAtTime_gte?: any | null
updatedAtTime_lt?: any | null
updatedAtTime_lte?: any | null
updatedAtTime_in?: any[] | null
updatedAtTime_not_in?: any[] | null
space_isNull?: boolean | null
space?: SpaceWhereInput | null
kind_isNull?: boolean | null
kind_eq?: PostKind | null
kind_not_eq?: PostKind | null
kind_in?: PostKind[] | null
kind_not_in?: PostKind[] | null
postFollowers_every?: PostFollowersWhereInput | null
postFollowers_some?: PostFollowersWhereInput | null
postFollowers_none?: PostFollowersWhereInput | null
commentFollowers_every?: CommentFollowersWhereInput | null
commentFollowers_some?: CommentFollowersWhereInput | null
commentFollowers_none?: CommentFollowersWhereInput | null
followersCount_isNull?: boolean | null
followersCount_eq?: number | null
followersCount_not_eq?: number | null
followersCount_gt?: number | null
followersCount_gte?: number | null
followersCount_lt?: number | null
followersCount_lte?: number | null
followersCount_in?: number[] | null
followersCount_not_in?: number[] | null
repliesCount_isNull?: boolean | null
repliesCount_eq?: number | null
repliesCount_not_eq?: number | null
repliesCount_gt?: number | null
repliesCount_gte?: number | null
repliesCount_lt?: number | null
repliesCount_lte?: number | null
repliesCount_in?: number[] | null
repliesCount_not_in?: number[] | null
publicRepliesCount_isNull?: boolean | null
publicRepliesCount_eq?: number | null
publicRepliesCount_not_eq?: number | null
publicRepliesCount_gt?: number | null
publicRepliesCount_gte?: number | null
publicRepliesCount_lt?: number | null
publicRepliesCount_lte?: number | null
publicRepliesCount_in?: number[] | null
publicRepliesCount_not_in?: number[] | null
hiddenRepliesCount_isNull?: boolean | null
hiddenRepliesCount_eq?: number | null
hiddenRepliesCount_not_eq?: number | null
hiddenRepliesCount_gt?: number | null
hiddenRepliesCount_gte?: number | null
hiddenRepliesCount_lt?: number | null
hiddenRepliesCount_lte?: number | null
hiddenRepliesCount_in?: number[] | null
hiddenRepliesCount_not_in?: number[] | null
sharesCount_isNull?: boolean | null
sharesCount_eq?: number | null
sharesCount_not_eq?: number | null
sharesCount_gt?: number | null
sharesCount_gte?: number | null
sharesCount_lt?: number | null
sharesCount_lte?: number | null
sharesCount_in?: number[] | null
sharesCount_not_in?: number[] | null
upvotesCount_isNull?: boolean | null
upvotesCount_eq?: number | null
upvotesCount_not_eq?: number | null
upvotesCount_gt?: number | null
upvotesCount_gte?: number | null
upvotesCount_lt?: number | null
upvotesCount_lte?: number | null
upvotesCount_in?: number[] | null
upvotesCount_not_in?: number[] | null
downvotesCount_isNull?: boolean | null
downvotesCount_eq?: number | null
downvotesCount_not_eq?: number | null
downvotesCount_gt?: number | null
downvotesCount_gte?: number | null
downvotesCount_lt?: number | null
downvotesCount_lte?: number | null
downvotesCount_in?: number[] | null
downvotesCount_not_in?: number[] | null
reactionsCount_isNull?: boolean | null
reactionsCount_eq?: number | null
reactionsCount_not_eq?: number | null
reactionsCount_gt?: number | null
reactionsCount_gte?: number | null
reactionsCount_lt?: number | null
reactionsCount_lte?: number | null
reactionsCount_in?: number[] | null
reactionsCount_not_in?: number[] | null
reactions_every?: ReactionWhereInput | null
reactions_some?: ReactionWhereInput | null
reactions_none?: ReactionWhereInput | null
title_isNull?: boolean | null
title_eq?: string | null
title_not_eq?: string | null
title_gt?: string | null
title_gte?: string | null
title_lt?: string | null
title_lte?: string | null
title_in?: string[] | null
title_not_in?: string[] | null
title_contains?: string | null
title_not_contains?: string | null
title_containsInsensitive?: string | null
title_not_containsInsensitive?: string | null
title_startsWith?: string | null
title_not_startsWith?: string | null
title_endsWith?: string | null
title_not_endsWith?: string | null
image_isNull?: boolean | null
image_eq?: string | null
image_not_eq?: string | null
image_gt?: string | null
image_gte?: string | null
image_lt?: string | null
image_lte?: string | null
image_in?: string[] | null
image_not_in?: string[] | null
image_contains?: string | null
image_not_contains?: string | null
image_containsInsensitive?: string | null
image_not_containsInsensitive?: string | null
image_startsWith?: string | null
image_not_startsWith?: string | null
image_endsWith?: string | null
image_not_endsWith?: string | null
link_isNull?: boolean | null
link_eq?: string | null
link_not_eq?: string | null
link_gt?: string | null
link_gte?: string | null
link_lt?: string | null
link_lte?: string | null
link_in?: string[] | null
link_not_in?: string[] | null
link_contains?: string | null
link_not_contains?: string | null
link_containsInsensitive?: string | null
link_not_containsInsensitive?: string | null
link_startsWith?: string | null
link_not_startsWith?: string | null
link_endsWith?: string | null
link_not_endsWith?: string | null
canonical_isNull?: boolean | null
canonical_eq?: string | null
canonical_not_eq?: string | null
canonical_gt?: string | null
canonical_gte?: string | null
canonical_lt?: string | null
canonical_lte?: string | null
canonical_in?: string[] | null
canonical_not_in?: string[] | null
canonical_contains?: string | null
canonical_not_contains?: string | null
canonical_containsInsensitive?: string | null
canonical_not_containsInsensitive?: string | null
canonical_startsWith?: string | null
canonical_not_startsWith?: string | null
canonical_endsWith?: string | null
canonical_not_endsWith?: string | null
content_isNull?: boolean | null
content_eq?: string | null
content_not_eq?: string | null
content_gt?: string | null
content_gte?: string | null
content_lt?: string | null
content_lte?: string | null
content_in?: string[] | null
content_not_in?: string[] | null
content_contains?: string | null
content_not_contains?: string | null
content_containsInsensitive?: string | null
content_not_containsInsensitive?: string | null
content_startsWith?: string | null
content_not_startsWith?: string | null
content_endsWith?: string | null
content_not_endsWith?: string | null
slug_isNull?: boolean | null
slug_eq?: string | null
slug_not_eq?: string | null
slug_gt?: string | null
slug_gte?: string | null
slug_lt?: string | null
slug_lte?: string | null
slug_in?: string[] | null
slug_not_in?: string[] | null
slug_contains?: string | null
slug_not_contains?: string | null
slug_containsInsensitive?: string | null
slug_not_containsInsensitive?: string | null
slug_startsWith?: string | null
slug_not_startsWith?: string | null
slug_endsWith?: string | null
slug_not_endsWith?: string | null
body_isNull?: boolean | null
body_eq?: string | null
body_not_eq?: string | null
body_gt?: string | null
body_gte?: string | null
body_lt?: string | null
body_lte?: string | null
body_in?: string[] | null
body_not_in?: string[] | null
body_contains?: string | null
body_not_contains?: string | null
body_containsInsensitive?: string | null
body_not_containsInsensitive?: string | null
body_startsWith?: string | null
body_not_startsWith?: string | null
body_endsWith?: string | null
body_not_endsWith?: string | null
summary_isNull?: boolean | null
summary_eq?: string | null
summary_not_eq?: string | null
summary_gt?: string | null
summary_gte?: string | null
summary_lt?: string | null
summary_lte?: string | null
summary_in?: string[] | null
summary_not_in?: string[] | null
summary_contains?: string | null
summary_not_contains?: string | null
summary_containsInsensitive?: string | null
summary_not_containsInsensitive?: string | null
summary_startsWith?: string | null
summary_not_startsWith?: string | null
summary_endsWith?: string | null
summary_not_endsWith?: string | null
isShowMore_isNull?: boolean | null
isShowMore_eq?: boolean | null
isShowMore_not_eq?: boolean | null
meta_isNull?: boolean | null
meta_eq?: string | null
meta_not_eq?: string | null
meta_gt?: string | null
meta_gte?: string | null
meta_lt?: string | null
meta_lte?: string | null
meta_in?: string[] | null
meta_not_in?: string[] | null
meta_contains?: string | null
meta_not_contains?: string | null
meta_containsInsensitive?: string | null
meta_not_containsInsensitive?: string | null
meta_startsWith?: string | null
meta_not_startsWith?: string | null
meta_endsWith?: string | null
meta_not_endsWith?: string | null
tagsOriginal_isNull?: boolean | null
tagsOriginal_eq?: string | null
tagsOriginal_not_eq?: string | null
tagsOriginal_gt?: string | null
tagsOriginal_gte?: string | null
tagsOriginal_lt?: string | null
tagsOriginal_lte?: string | null
tagsOriginal_in?: string[] | null
tagsOriginal_not_in?: string[] | null
tagsOriginal_contains?: string | null
tagsOriginal_not_contains?: string | null
tagsOriginal_containsInsensitive?: string | null
tagsOriginal_not_containsInsensitive?: string | null
tagsOriginal_startsWith?: string | null
tagsOriginal_not_startsWith?: string | null
tagsOriginal_endsWith?: string | null
tagsOriginal_not_endsWith?: string | null
format_isNull?: boolean | null
format_eq?: string | null
format_not_eq?: string | null
format_gt?: string | null
format_gte?: string | null
format_lt?: string | null
format_lte?: string | null
format_in?: string[] | null
format_not_in?: string[] | null
format_contains?: string | null
format_not_contains?: string | null
format_containsInsensitive?: string | null
format_not_containsInsensitive?: string | null
format_startsWith?: string | null
format_not_startsWith?: string | null
format_endsWith?: string | null
format_not_endsWith?: string | null
proposalIndex_isNull?: boolean | null
proposalIndex_eq?: number | null
proposalIndex_not_eq?: number | null
proposalIndex_gt?: number | null
proposalIndex_gte?: number | null
proposalIndex_lt?: number | null
proposalIndex_lte?: number | null
proposalIndex_in?: number[] | null
proposalIndex_not_in?: number[] | null
AND?: PostWhereInput[] | null
OR?: PostWhereInput[] | null
}
export interface ReactionWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
post_isNull?: boolean | null
post?: PostWhereInput | null
account_isNull?: boolean | null
account?: AccountWhereInput | null
kind_isNull?: boolean | null
kind_eq?: ReactionKind | null
kind_not_eq?: ReactionKind | null
kind_in?: ReactionKind[] | null
kind_not_in?: ReactionKind[] | null
status_isNull?: boolean | null
status_eq?: Status | null
status_not_eq?: Status | null
status_in?: Status[] | null
status_not_in?: Status[] | null
createdAtBlock_isNull?: boolean | null
createdAtBlock_eq?: any | null
createdAtBlock_not_eq?: any | null
createdAtBlock_gt?: any | null
createdAtBlock_gte?: any | null
createdAtBlock_lt?: any | null
createdAtBlock_lte?: any | null
createdAtBlock_in?: any[] | null
createdAtBlock_not_in?: any[] | null
createdAtTime_isNull?: boolean | null
createdAtTime_eq?: any | null
createdAtTime_not_eq?: any | null
createdAtTime_gt?: any | null
createdAtTime_gte?: any | null
createdAtTime_lt?: any | null
createdAtTime_lte?: any | null
createdAtTime_in?: any[] | null
createdAtTime_not_in?: any[] | null
updatedAtBlock_isNull?: boolean | null
updatedAtBlock_eq?: any | null
updatedAtBlock_not_eq?: any | null
updatedAtBlock_gt?: any | null
updatedAtBlock_gte?: any | null
updatedAtBlock_lt?: any | null
updatedAtBlock_lte?: any | null
updatedAtBlock_in?: any[] | null
updatedAtBlock_not_in?: any[] | null
updatedAtTime_isNull?: boolean | null
updatedAtTime_eq?: any | null
updatedAtTime_not_eq?: any | null
updatedAtTime_gt?: any | null
updatedAtTime_gte?: any | null
updatedAtTime_lt?: any | null
updatedAtTime_lte?: any | null
updatedAtTime_in?: any[] | null
updatedAtTime_not_in?: any[] | null
AND?: ReactionWhereInput[] | null
OR?: ReactionWhereInput[] | null
}
export interface SpaceFollowersWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
followerAccount_isNull?: boolean | null
followerAccount?: AccountWhereInput | null
followingSpace_isNull?: boolean | null
followingSpace?: SpaceWhereInput | null
AND?: SpaceFollowersWhereInput[] | null
OR?: SpaceFollowersWhereInput[] | null
}
export interface SpacePermissionsWhereInput {
manageRoles_isNull?: boolean | null
manageRoles_eq?: boolean | null
manageRoles_not_eq?: boolean | null
representSpaceInternally_isNull?: boolean | null
representSpaceInternally_eq?: boolean | null
representSpaceInternally_not_eq?: boolean | null
representSpaceExternally_isNull?: boolean | null
representSpaceExternally_eq?: boolean | null
representSpaceExternally_not_eq?: boolean | null
updateSpace_isNull?: boolean | null
updateSpace_eq?: boolean | null
updateSpace_not_eq?: boolean | null
createSubspaces_isNull?: boolean | null
createSubspaces_eq?: boolean | null
createSubspaces_not_eq?: boolean | null
updateOwnSubspaces_isNull?: boolean | null
updateOwnSubspaces_eq?: boolean | null
updateOwnSubspaces_not_eq?: boolean | null
deleteOwnSubspaces_isNull?: boolean | null
deleteOwnSubspaces_eq?: boolean | null
deleteOwnSubspaces_not_eq?: boolean | null
hideOwnSubspaces_isNull?: boolean | null
hideOwnSubspaces_eq?: boolean | null
hideOwnSubspaces_not_eq?: boolean | null
updateAnySubspace_isNull?: boolean | null
updateAnySubspace_eq?: boolean | null
updateAnySubspace_not_eq?: boolean | null
deleteAnySubspace_isNull?: boolean | null
deleteAnySubspace_eq?: boolean | null
deleteAnySubspace_not_eq?: boolean | null
hideAnySubspace_isNull?: boolean | null
hideAnySubspace_eq?: boolean | null
hideAnySubspace_not_eq?: boolean | null
createPosts_isNull?: boolean | null
createPosts_eq?: boolean | null
createPosts_not_eq?: boolean | null
updateOwnPosts_isNull?: boolean | null
updateOwnPosts_eq?: boolean | null
updateOwnPosts_not_eq?: boolean | null
deleteOwnPosts_isNull?: boolean | null
deleteOwnPosts_eq?: boolean | null
deleteOwnPosts_not_eq?: boolean | null
hideOwnPosts_isNull?: boolean | null
hideOwnPosts_eq?: boolean | null
hideOwnPosts_not_eq?: boolean | null
updateAnyPost_isNull?: boolean | null
updateAnyPost_eq?: boolean | null
updateAnyPost_not_eq?: boolean | null
deleteAnyPost_isNull?: boolean | null
deleteAnyPost_eq?: boolean | null
deleteAnyPost_not_eq?: boolean | null
hideAnyPost_isNull?: boolean | null
hideAnyPost_eq?: boolean | null
hideAnyPost_not_eq?: boolean | null
createComments_isNull?: boolean | null
createComments_eq?: boolean | null
createComments_not_eq?: boolean | null
updateOwnComments_isNull?: boolean | null
updateOwnComments_eq?: boolean | null
updateOwnComments_not_eq?: boolean | null
deleteOwnComments_isNull?: boolean | null
deleteOwnComments_eq?: boolean | null
deleteOwnComments_not_eq?: boolean | null
hideOwnComments_isNull?: boolean | null
hideOwnComments_eq?: boolean | null
hideOwnComments_not_eq?: boolean | null
hideAnyComment_isNull?: boolean | null
hideAnyComment_eq?: boolean | null
hideAnyComment_not_eq?: boolean | null
upvote_isNull?: boolean | null
upvote_eq?: boolean | null
upvote_not_eq?: boolean | null
downvote_isNull?: boolean | null
downvote_eq?: boolean | null
downvote_not_eq?: boolean | null
share_isNull?: boolean | null
share_eq?: boolean | null
share_not_eq?: boolean | null
overrideSubspacePermissions_isNull?: boolean | null
overrideSubspacePermissions_eq?: boolean | null
overrideSubspacePermissions_not_eq?: boolean | null
overridePostPermissions_isNull?: boolean | null
overridePostPermissions_eq?: boolean | null
overridePostPermissions_not_eq?: boolean | null
suggestEntityStatus_isNull?: boolean | null
suggestEntityStatus_eq?: boolean | null
suggestEntityStatus_not_eq?: boolean | null
updateEntityStatus_isNull?: boolean | null
updateEntityStatus_eq?: boolean | null
updateEntityStatus_not_eq?: boolean | null
updateSpaceSettings_isNull?: boolean | null
updateSpaceSettings_eq?: boolean | null
updateSpaceSettings_not_eq?: boolean | null
}
export interface SpaceWhereInput {
id_isNull?: boolean | null
id_eq?: string | null
id_not_eq?: string | null
id_gt?: string | null
id_gte?: string | null
id_lt?: string | null
id_lte?: string | null
id_in?: string[] | null
id_not_in?: string[] | null
id_contains?: string | null
id_not_contains?: string | null
id_containsInsensitive?: string | null
id_not_containsInsensitive?: string | null
id_startsWith?: string | null
id_not_startsWith?: string | null
id_endsWith?: string | null
id_not_endsWith?: string | null
createdByAccount_isNull?: boolean | null
createdByAccount?: AccountWhereInput | null
ownedByAccount_isNull?: boolean | null
ownedByAccount?: AccountWhereInput | null
profileSpace_isNull?: boolean | null
profileSpace?: AccountWhereInput | null
createdAtBlock_isNull?: boolean | null
createdAtBlock_eq?: any | null
createdAtBlock_not_eq?: any | null
createdAtBlock_gt?: any | null
createdAtBlock_gte?: any | null
createdAtBlock_lt?: any | null
createdAtBlock_lte?: any | null
createdAtBlock_in?: any[] | null
createdAtBlock_not_in?: any[] | null
createdAtTime_isNull?: boolean | null
createdAtTime_eq?: any | null
createdAtTime_not_eq?: any | null
createdAtTime_gt?: any | null
createdAtTime_gte?: any | null
createdAtTime_lt?: any | null
createdAtTime_lte?: any | null
createdAtTime_in?: any[] | null
createdAtTime_not_in?: any[] | null
createdOnDay_isNull?: boolean | null
createdOnDay_eq?: any | null
createdOnDay_not_eq?: any | null
createdOnDay_gt?: any | null
createdOnDay_gte?: any | null
createdOnDay_lt?: any | null
createdOnDay_lte?: any | null
createdOnDay_in?: any[] | null
createdOnDay_not_in?: any[] | null
updatedAtTime_isNull?: boolean | null
updatedAtTime_eq?: any | null
updatedAtTime_not_eq?: any | null
updatedAtTime_gt?: any | null
updatedAtTime_gte?: any | null
updatedAtTime_lt?: any | null
updatedAtTime_lte?: any | null
updatedAtTime_in?: any[] | null
updatedAtTime_not_in?: any[] | null
updatedAtBlock_isNull?: boolean | null
updatedAtBlock_eq?: any | null
updatedAtBlock_not_eq?: any | null
updatedAtBlock_gt?: any | null
updatedAtBlock_gte?: any | null