-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
2779 lines (2189 loc) · 70.7 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
"""Exposes a URL that specifies the behaviour of this scalar."""
directive @specifiedBy(
"""The URL that specifies the behaviour of this scalar."""
url: String!
) on SCALAR
type Application implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
id: String!
chainId: Int!
roundId: String!
projectId: String
anchorAddress: String
status: ApplicationStatus
statusSnapshots: JSON
distributionTransaction: String
metadataCid: String
metadata: JSON
createdByAddress: String
createdAtBlock: BigFloat
statusUpdatedAtBlock: BigFloat
totalDonationsCount: Int
totalAmountDonatedInUsd: Float
uniqueDonorsCount: Int
tags: [String]
"""Reads a single `Round` that is related to this `Application`."""
round: Round
"""Reads and enables pagination through a set of `ApplicationsPayout`."""
applicationsPayoutsByChainIdAndRoundIdAndApplicationId(
"""Only read the first `n` values of the set."""
first: Int
"""Skip the first `n` values."""
offset: Int
"""The method to use when ordering `ApplicationsPayout`."""
orderBy: [ApplicationsPayoutsOrderBy!]
"""
A condition to be used in determining which values should be returned by the collection.
"""
condition: ApplicationsPayoutCondition
"""
A filter to be used in determining which values should be returned by the collection.
"""
filter: ApplicationsPayoutFilter
): [ApplicationsPayout!]!
"""Reads and enables pagination through a set of `Donation`."""
donations(
"""Only read the first `n` values of the set."""
first: Int
"""Skip the first `n` values."""
offset: Int
"""The method to use when ordering `Donation`."""
orderBy: [DonationsOrderBy!]
"""
A condition to be used in determining which values should be returned by the collection.
"""
condition: DonationCondition
"""
A filter to be used in determining which values should be returned by the collection.
"""
filter: DonationFilter
): [Donation!]!
canonicalProject: Project
project: Project
}
"""
A condition to be used against `Application` object types. All fields are tested
for equality and combined with a logical ‘and.’
"""
input ApplicationCondition {
"""Checks for equality with the object’s `id` field."""
id: String
"""Checks for equality with the object’s `chainId` field."""
chainId: Int
"""Checks for equality with the object’s `roundId` field."""
roundId: String
"""Checks for equality with the object’s `projectId` field."""
projectId: String
"""Checks for equality with the object’s `anchorAddress` field."""
anchorAddress: String
"""Checks for equality with the object’s `status` field."""
status: ApplicationStatus
"""Checks for equality with the object’s `statusSnapshots` field."""
statusSnapshots: JSON
"""Checks for equality with the object’s `distributionTransaction` field."""
distributionTransaction: String
"""Checks for equality with the object’s `metadataCid` field."""
metadataCid: String
"""Checks for equality with the object’s `metadata` field."""
metadata: JSON
"""Checks for equality with the object’s `createdByAddress` field."""
createdByAddress: String
"""Checks for equality with the object’s `createdAtBlock` field."""
createdAtBlock: BigFloat
"""Checks for equality with the object’s `statusUpdatedAtBlock` field."""
statusUpdatedAtBlock: BigFloat
"""Checks for equality with the object’s `totalDonationsCount` field."""
totalDonationsCount: Int
"""Checks for equality with the object’s `totalAmountDonatedInUsd` field."""
totalAmountDonatedInUsd: Float
"""Checks for equality with the object’s `uniqueDonorsCount` field."""
uniqueDonorsCount: Int
"""Checks for equality with the object’s `tags` field."""
tags: [String]
}
"""
A filter to be used against `Application` object types. All fields are combined with a logical ‘and.’
"""
input ApplicationFilter {
"""Filter by the object’s `id` field."""
id: StringFilter
"""Filter by the object’s `chainId` field."""
chainId: IntFilter
"""Filter by the object’s `roundId` field."""
roundId: StringFilter
"""Filter by the object’s `projectId` field."""
projectId: StringFilter
"""Filter by the object’s `anchorAddress` field."""
anchorAddress: StringFilter
"""Filter by the object’s `status` field."""
status: ApplicationStatusFilter
"""Filter by the object’s `statusSnapshots` field."""
statusSnapshots: JSONFilter
"""Filter by the object’s `distributionTransaction` field."""
distributionTransaction: StringFilter
"""Filter by the object’s `metadataCid` field."""
metadataCid: StringFilter
"""Filter by the object’s `metadata` field."""
metadata: JSONFilter
"""Filter by the object’s `createdByAddress` field."""
createdByAddress: StringFilter
"""Filter by the object’s `createdAtBlock` field."""
createdAtBlock: BigFloatFilter
"""Filter by the object’s `statusUpdatedAtBlock` field."""
statusUpdatedAtBlock: BigFloatFilter
"""Filter by the object’s `totalDonationsCount` field."""
totalDonationsCount: IntFilter
"""Filter by the object’s `totalAmountDonatedInUsd` field."""
totalAmountDonatedInUsd: FloatFilter
"""Filter by the object’s `uniqueDonorsCount` field."""
uniqueDonorsCount: IntFilter
"""Filter by the object’s `tags` field."""
tags: StringListFilter
"""
Filter by the object’s `applicationsPayoutsByChainIdAndRoundIdAndApplicationId` relation.
"""
applicationsPayoutsByChainIdAndRoundIdAndApplicationId: ApplicationToManyApplicationsPayoutFilter
"""
Some related `applicationsPayoutsByChainIdAndRoundIdAndApplicationId` exist.
"""
applicationsPayoutsByChainIdAndRoundIdAndApplicationIdExist: Boolean
"""Filter by the object’s `donations` relation."""
donations: ApplicationToManyDonationFilter
"""Some related `donations` exist."""
donationsExist: Boolean
"""Filter by the object’s `round` relation."""
round: RoundFilter
"""Checks for all expressions in this list."""
and: [ApplicationFilter!]
"""Checks for any expressions in this list."""
or: [ApplicationFilter!]
"""Negates the expression."""
not: ApplicationFilter
}
"""Methods to use when ordering `Application`."""
enum ApplicationsOrderBy {
NATURAL
ID_ASC
ID_DESC
CHAIN_ID_ASC
CHAIN_ID_DESC
ROUND_ID_ASC
ROUND_ID_DESC
PROJECT_ID_ASC
PROJECT_ID_DESC
ANCHOR_ADDRESS_ASC
ANCHOR_ADDRESS_DESC
STATUS_ASC
STATUS_DESC
STATUS_SNAPSHOTS_ASC
STATUS_SNAPSHOTS_DESC
DISTRIBUTION_TRANSACTION_ASC
DISTRIBUTION_TRANSACTION_DESC
METADATA_CID_ASC
METADATA_CID_DESC
METADATA_ASC
METADATA_DESC
CREATED_BY_ADDRESS_ASC
CREATED_BY_ADDRESS_DESC
CREATED_AT_BLOCK_ASC
CREATED_AT_BLOCK_DESC
STATUS_UPDATED_AT_BLOCK_ASC
STATUS_UPDATED_AT_BLOCK_DESC
TOTAL_DONATIONS_COUNT_ASC
TOTAL_DONATIONS_COUNT_DESC
TOTAL_AMOUNT_DONATED_IN_USD_ASC
TOTAL_AMOUNT_DONATED_IN_USD_DESC
UNIQUE_DONORS_COUNT_ASC
UNIQUE_DONORS_COUNT_DESC
TAGS_ASC
TAGS_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}
type ApplicationsPayout implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
id: Int!
chainId: Int
applicationId: String
roundId: String
amount: BigFloat
tokenAddress: String
amountInUsd: Float
amountInRoundMatchToken: String
transactionHash: String
"""
Reads a single `Application` that is related to this `ApplicationsPayout`.
"""
chainRoundApplication: Application
}
"""
A condition to be used against `ApplicationsPayout` object types. All fields are
tested for equality and combined with a logical ‘and.’
"""
input ApplicationsPayoutCondition {
"""Checks for equality with the object’s `id` field."""
id: Int
"""Checks for equality with the object’s `chainId` field."""
chainId: Int
"""Checks for equality with the object’s `applicationId` field."""
applicationId: String
"""Checks for equality with the object’s `roundId` field."""
roundId: String
"""Checks for equality with the object’s `amount` field."""
amount: BigFloat
"""Checks for equality with the object’s `tokenAddress` field."""
tokenAddress: String
"""Checks for equality with the object’s `amountInUsd` field."""
amountInUsd: Float
"""Checks for equality with the object’s `amountInRoundMatchToken` field."""
amountInRoundMatchToken: String
"""Checks for equality with the object’s `transactionHash` field."""
transactionHash: String
}
"""
A filter to be used against `ApplicationsPayout` object types. All fields are combined with a logical ‘and.’
"""
input ApplicationsPayoutFilter {
"""Filter by the object’s `id` field."""
id: IntFilter
"""Filter by the object’s `chainId` field."""
chainId: IntFilter
"""Filter by the object’s `applicationId` field."""
applicationId: StringFilter
"""Filter by the object’s `roundId` field."""
roundId: StringFilter
"""Filter by the object’s `amount` field."""
amount: BigFloatFilter
"""Filter by the object’s `tokenAddress` field."""
tokenAddress: StringFilter
"""Filter by the object’s `amountInUsd` field."""
amountInUsd: FloatFilter
"""Filter by the object’s `amountInRoundMatchToken` field."""
amountInRoundMatchToken: StringFilter
"""Filter by the object’s `transactionHash` field."""
transactionHash: StringFilter
"""Filter by the object’s `chainRoundApplication` relation."""
chainRoundApplication: ApplicationFilter
"""A related `chainRoundApplication` exists."""
chainRoundApplicationExists: Boolean
"""Checks for all expressions in this list."""
and: [ApplicationsPayoutFilter!]
"""Checks for any expressions in this list."""
or: [ApplicationsPayoutFilter!]
"""Negates the expression."""
not: ApplicationsPayoutFilter
}
"""Methods to use when ordering `ApplicationsPayout`."""
enum ApplicationsPayoutsOrderBy {
NATURAL
ID_ASC
ID_DESC
CHAIN_ID_ASC
CHAIN_ID_DESC
APPLICATION_ID_ASC
APPLICATION_ID_DESC
ROUND_ID_ASC
ROUND_ID_DESC
AMOUNT_ASC
AMOUNT_DESC
TOKEN_ADDRESS_ASC
TOKEN_ADDRESS_DESC
AMOUNT_IN_USD_ASC
AMOUNT_IN_USD_DESC
AMOUNT_IN_ROUND_MATCH_TOKEN_ASC
AMOUNT_IN_ROUND_MATCH_TOKEN_DESC
TRANSACTION_HASH_ASC
TRANSACTION_HASH_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}
enum ApplicationStatus {
PENDING
APPROVED
REJECTED
CANCELLED
IN_REVIEW
}
"""
A filter to be used against ApplicationStatus fields. All fields are combined with a logical ‘and.’
"""
input ApplicationStatusFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: ApplicationStatus
"""Not equal to the specified value."""
notEqualTo: ApplicationStatus
"""Included in the specified list."""
in: [ApplicationStatus!]
"""Not included in the specified list."""
notIn: [ApplicationStatus!]
"""Less than the specified value."""
lessThan: ApplicationStatus
"""Less than or equal to the specified value."""
lessThanOrEqualTo: ApplicationStatus
"""Greater than the specified value."""
greaterThan: ApplicationStatus
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: ApplicationStatus
}
"""
A filter to be used against many `ApplicationsPayout` object types. All fields are combined with a logical ‘and.’
"""
input ApplicationToManyApplicationsPayoutFilter {
"""
Every related `ApplicationsPayout` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
every: ApplicationsPayoutFilter
"""
Some related `ApplicationsPayout` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
some: ApplicationsPayoutFilter
"""
No related `ApplicationsPayout` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
none: ApplicationsPayoutFilter
}
"""
A filter to be used against many `Donation` object types. All fields are combined with a logical ‘and.’
"""
input ApplicationToManyDonationFilter {
"""
Every related `Donation` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
every: DonationFilter
"""
Some related `Donation` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
some: DonationFilter
"""
No related `Donation` matches the filter criteria. All fields are combined with a logical ‘and.’
"""
none: DonationFilter
}
"""
A floating point number that requires more precision than IEEE 754 binary 64
"""
scalar BigFloat
"""
A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’
"""
input BigFloatFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: BigFloat
"""Not equal to the specified value."""
notEqualTo: BigFloat
"""Included in the specified list."""
in: [BigFloat!]
"""Not included in the specified list."""
notIn: [BigFloat!]
"""Less than the specified value."""
lessThan: BigFloat
"""Less than or equal to the specified value."""
lessThanOrEqualTo: BigFloat
"""Greater than the specified value."""
greaterThan: BigFloat
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: BigFloat
}
"""
A signed eight-byte integer. The upper big integer values are greater than the
max value for a JavaScript number. Therefore all big integers will be output as
strings and not numbers.
"""
scalar BigInt
"""
A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’
"""
input BigIntFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: BigInt
"""Not equal to the specified value."""
notEqualTo: BigInt
"""Included in the specified list."""
in: [BigInt!]
"""Not included in the specified list."""
notIn: [BigInt!]
"""Less than the specified value."""
lessThan: BigInt
"""Less than or equal to the specified value."""
lessThanOrEqualTo: BigInt
"""Greater than the specified value."""
greaterThan: BigInt
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: BigInt
}
"""
A point in time as described by the [ISO
8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone.
"""
scalar Datetime
"""
A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’
"""
input DatetimeFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: Datetime
"""Not equal to the specified value."""
notEqualTo: Datetime
"""Included in the specified list."""
in: [Datetime!]
"""Not included in the specified list."""
notIn: [Datetime!]
"""Less than the specified value."""
lessThan: Datetime
"""Less than or equal to the specified value."""
lessThanOrEqualTo: Datetime
"""Greater than the specified value."""
greaterThan: Datetime
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: Datetime
}
""" """
type Donation implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
id: String!
chainId: Int
roundId: String
applicationId: String
donorAddress: String
recipientAddress: String
projectId: String
transactionHash: String
blockNumber: BigFloat
tokenAddress: String
timestamp: Datetime
amount: BigFloat
amountInUsd: Float
amountInRoundMatchToken: BigFloat
"""Reads a single `Round` that is related to this `Donation`."""
round: Round
"""Reads a single `Application` that is related to this `Donation`."""
application: Application
}
"""
A condition to be used against `Donation` object types. All fields are tested
for equality and combined with a logical ‘and.’
"""
input DonationCondition {
"""Checks for equality with the object’s `id` field."""
id: String
"""Checks for equality with the object’s `chainId` field."""
chainId: Int
"""Checks for equality with the object’s `roundId` field."""
roundId: String
"""Checks for equality with the object’s `applicationId` field."""
applicationId: String
"""Checks for equality with the object’s `donorAddress` field."""
donorAddress: String
"""Checks for equality with the object’s `recipientAddress` field."""
recipientAddress: String
"""Checks for equality with the object’s `projectId` field."""
projectId: String
"""Checks for equality with the object’s `transactionHash` field."""
transactionHash: String
"""Checks for equality with the object’s `blockNumber` field."""
blockNumber: BigFloat
"""Checks for equality with the object’s `tokenAddress` field."""
tokenAddress: String
"""Checks for equality with the object’s `timestamp` field."""
timestamp: Datetime
"""Checks for equality with the object’s `amount` field."""
amount: BigFloat
"""Checks for equality with the object’s `amountInUsd` field."""
amountInUsd: Float
"""Checks for equality with the object’s `amountInRoundMatchToken` field."""
amountInRoundMatchToken: BigFloat
}
"""
A filter to be used against `Donation` object types. All fields are combined with a logical ‘and.’
"""
input DonationFilter {
"""Filter by the object’s `id` field."""
id: StringFilter
"""Filter by the object’s `chainId` field."""
chainId: IntFilter
"""Filter by the object’s `roundId` field."""
roundId: StringFilter
"""Filter by the object’s `applicationId` field."""
applicationId: StringFilter
"""Filter by the object’s `donorAddress` field."""
donorAddress: StringFilter
"""Filter by the object’s `recipientAddress` field."""
recipientAddress: StringFilter
"""Filter by the object’s `projectId` field."""
projectId: StringFilter
"""Filter by the object’s `transactionHash` field."""
transactionHash: StringFilter
"""Filter by the object’s `blockNumber` field."""
blockNumber: BigFloatFilter
"""Filter by the object’s `tokenAddress` field."""
tokenAddress: StringFilter
"""Filter by the object’s `timestamp` field."""
timestamp: DatetimeFilter
"""Filter by the object’s `amount` field."""
amount: BigFloatFilter
"""Filter by the object’s `amountInUsd` field."""
amountInUsd: FloatFilter
"""Filter by the object’s `amountInRoundMatchToken` field."""
amountInRoundMatchToken: BigFloatFilter
"""Filter by the object’s `round` relation."""
round: RoundFilter
"""A related `round` exists."""
roundExists: Boolean
"""Filter by the object’s `application` relation."""
application: ApplicationFilter
"""A related `application` exists."""
applicationExists: Boolean
"""Checks for all expressions in this list."""
and: [DonationFilter!]
"""Checks for any expressions in this list."""
or: [DonationFilter!]
"""Negates the expression."""
not: DonationFilter
}
"""Methods to use when ordering `Donation`."""
enum DonationsOrderBy {
NATURAL
ID_ASC
ID_DESC
CHAIN_ID_ASC
CHAIN_ID_DESC
ROUND_ID_ASC
ROUND_ID_DESC
APPLICATION_ID_ASC
APPLICATION_ID_DESC
DONOR_ADDRESS_ASC
DONOR_ADDRESS_DESC
RECIPIENT_ADDRESS_ASC
RECIPIENT_ADDRESS_DESC
PROJECT_ID_ASC
PROJECT_ID_DESC
TRANSACTION_HASH_ASC
TRANSACTION_HASH_DESC
BLOCK_NUMBER_ASC
BLOCK_NUMBER_DESC
TOKEN_ADDRESS_ASC
TOKEN_ADDRESS_DESC
TIMESTAMP_ASC
TIMESTAMP_DESC
AMOUNT_ASC
AMOUNT_DESC
AMOUNT_IN_USD_ASC
AMOUNT_IN_USD_DESC
AMOUNT_IN_ROUND_MATCH_TOKEN_ASC
AMOUNT_IN_ROUND_MATCH_TOKEN_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}
"""
A filter to be used against Float fields. All fields are combined with a logical ‘and.’
"""
input FloatFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: Float
"""Not equal to the specified value."""
notEqualTo: Float
"""Included in the specified list."""
in: [Float!]
"""Not included in the specified list."""
notIn: [Float!]
"""Less than the specified value."""
lessThan: Float
"""Less than or equal to the specified value."""
lessThanOrEqualTo: Float
"""Greater than the specified value."""
greaterThan: Float
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: Float
}
"""
A filter to be used against Int fields. All fields are combined with a logical ‘and.’
"""
input IntFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: Int
"""Not equal to the specified value."""
notEqualTo: Int
"""Included in the specified list."""
in: [Int!]
"""Not included in the specified list."""
notIn: [Int!]
"""Less than the specified value."""
lessThan: Int
"""Less than or equal to the specified value."""
lessThanOrEqualTo: Int
"""Greater than the specified value."""
greaterThan: Int
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: Int
}
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON
"""
A filter to be used against JSON fields. All fields are combined with a logical ‘and.’
"""
input JSONFilter {
"""
Is null (if `true` is specified) or is not null (if `false` is specified).
"""
isNull: Boolean
"""Equal to the specified value."""
equalTo: JSON
"""Not equal to the specified value."""
notEqualTo: JSON
"""Included in the specified list."""
in: [JSON!]
"""Not included in the specified list."""
notIn: [JSON!]
"""Less than the specified value."""
lessThan: JSON
"""Less than or equal to the specified value."""
lessThanOrEqualTo: JSON
"""Greater than the specified value."""
greaterThan: JSON
"""Greater than or equal to the specified value."""
greaterThanOrEqualTo: JSON
"""Contains the specified JSON."""
contains: JSON
}
type LegacyProject implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
id: Int!
v1ProjectId: String
v2ProjectId: String
}
"""
A condition to be used against `LegacyProject` object types. All fields are
tested for equality and combined with a logical ‘and.’
"""
input LegacyProjectCondition {
"""Checks for equality with the object’s `id` field."""
id: Int
"""Checks for equality with the object’s `v1ProjectId` field."""
v1ProjectId: String
"""Checks for equality with the object’s `v2ProjectId` field."""
v2ProjectId: String
}
"""
A filter to be used against `LegacyProject` object types. All fields are combined with a logical ‘and.’
"""
input LegacyProjectFilter {
"""Filter by the object’s `id` field."""
id: IntFilter
"""Filter by the object’s `v1ProjectId` field."""
v1ProjectId: StringFilter
"""Filter by the object’s `v2ProjectId` field."""
v2ProjectId: StringFilter
"""Checks for all expressions in this list."""
and: [LegacyProjectFilter!]
"""Checks for any expressions in this list."""
or: [LegacyProjectFilter!]
"""Negates the expression."""
not: LegacyProjectFilter
}
"""Methods to use when ordering `LegacyProject`."""
enum LegacyProjectsOrderBy {
NATURAL
ID_ASC
ID_DESC
V1_PROJECT_ID_ASC
V1_PROJECT_ID_DESC
V2_PROJECT_ID_ASC
V2_PROJECT_ID_DESC
PRIMARY_KEY_ASC
PRIMARY_KEY_DESC
}
"""An object with a globally unique `ID`."""
interface Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
}
type PendingProjectRole implements Node {
"""
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
"""
nodeId: ID!
id: Int!
chainId: Int
role: String
address: String
createdAtBlock: BigFloat
}
"""
A condition to be used against `PendingProjectRole` object types. All fields are
tested for equality and combined with a logical ‘and.’
"""
input PendingProjectRoleCondition {
"""Checks for equality with the object’s `id` field."""
id: Int
"""Checks for equality with the object’s `chainId` field."""
chainId: Int
"""Checks for equality with the object’s `role` field."""
role: String
"""Checks for equality with the object’s `address` field."""
address: String
"""Checks for equality with the object’s `createdAtBlock` field."""
createdAtBlock: BigFloat
}
"""
A filter to be used against `PendingProjectRole` object types. All fields are combined with a logical ‘and.’
"""
input PendingProjectRoleFilter {
"""Filter by the object’s `id` field."""
id: IntFilter
"""Filter by the object’s `chainId` field."""
chainId: IntFilter
"""Filter by the object’s `role` field."""
role: StringFilter
"""Filter by the object’s `address` field."""
address: StringFilter
"""Filter by the object’s `createdAtBlock` field."""
createdAtBlock: BigFloatFilter
"""Checks for all expressions in this list."""