-
Notifications
You must be signed in to change notification settings - Fork 9
/
_schema.graphql
2256 lines (1890 loc) · 35.8 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
"""
Autogenerated input type of AddAssetToConsignmentSubmission
"""
input AddAssetToConsignmentSubmissionInput {
assetType: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
externalSubmissionId: ID
filename: String
geminiToken: String
sessionID: String
size: String
source: UploadSource
submissionID: ID
}
"""
Autogenerated return type of AddAssetToConsignmentSubmission
"""
type AddAssetToConsignmentSubmissionPayload {
asset: Asset
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
}
"""
Autogenerated input type of AddAssetsToConsignmentSubmission
"""
input AddAssetsToConsignmentSubmissionInput {
assetType: String
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
externalSubmissionId: ID
filename: String
geminiTokens: [String!]
sessionID: String
size: String
sources: UploadSources
submissionID: ID
}
"""
Autogenerated return type of AddAssetsToConsignmentSubmission
"""
type AddAssetsToConsignmentSubmissionPayload {
assets: [Asset!]
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
}
"""
Autogenerated input type of AddUserToSubmissionMutation
"""
input AddUserToSubmissionMutationInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
id: ID!
}
"""
Autogenerated return type of AddUserToSubmissionMutation
"""
type AddUserToSubmissionMutationPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
consignmentSubmission: Submission
}
"""
Submission Asset
"""
type Asset {
"""
type of this Asset
"""
assetType: String!
"""
path to document
"""
documentPath: String
"""
original image name
"""
filename: String
"""
gemini token for asset
"""
geminiToken: String
"""
Uniq ID for this asset
"""
id: ID!
"""
known image urls
"""
imageUrls: JSON
s3Bucket: String
s3Path: String
size: String
submissionID: ID
submissionId: ID!
}
enum AssetType {
ADDITIONAL_FILE
IMAGE
}
enum AttributionClass {
LIMITED_EDITION
OPEN_EDITION
UNIQUE
UNKNOWN_EDITION
}
enum Category {
ARCHITECTURE
DESIGN_DECORATIVE_ART
DRAWING_COLLAGE_OR_OTHER_WORK_ON_PAPER
FASHION_DESIGN_AND_WEARABLE_ART
INSTALLATION
JEWELRY
MIXED_MEDIA
OTHER
PAINTING
PERFORMANCE_ART
PHOTOGRAPHY
PRINT
SCULPTURE
TEXTILE_ARTS
VIDEO_FILM_ANIMATION
}
"""
Consignment
"""
type Consignment {
currency: String
"""
Uniq ID for this consignment
"""
id: ID!
internalID: ID
saleDate: String
saleName: String
salePriceCents: Int
state: ConsignmentState
submission: Submission!
submissionID: ID
submissionId: ID!
}
"""
The connection type for Consignment.
"""
type ConsignmentConnection {
"""
A list of edges.
"""
edges: [ConsignmentEdge]
"""
A list of nodes.
"""
nodes: [Consignment]
pageCursors: PageCursors
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
totalCount: Int
totalPages: Int
}
"""
An edge in a connection.
"""
type ConsignmentEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: Consignment
}
enum ConsignmentSort {
"""
sort by accepted_offer_id in ascending order
"""
ACCEPTED_OFFER_ID_ASC
"""
sort by accepted_offer_id in descending order
"""
ACCEPTED_OFFER_ID_DESC
"""
sort by artsy_commission_percent in ascending order
"""
ARTSY_COMMISSION_PERCENT_ASC
"""
sort by artsy_commission_percent in descending order
"""
ARTSY_COMMISSION_PERCENT_DESC
"""
sort by canceled_reason in ascending order
"""
CANCELED_REASON_ASC
"""
sort by canceled_reason in descending order
"""
CANCELED_REASON_DESC
"""
sort by created_at in ascending order
"""
CREATED_AT_ASC
"""
sort by created_at in descending order
"""
CREATED_AT_DESC
"""
sort by currency in ascending order
"""
CURRENCY_ASC
"""
sort by currency in descending order
"""
CURRENCY_DESC
"""
sort by id in ascending order
"""
ID_ASC
"""
sort by id in descending order
"""
ID_DESC
"""
sort by invoice_number in ascending order
"""
INVOICE_NUMBER_ASC
"""
sort by invoice_number in descending order
"""
INVOICE_NUMBER_DESC
"""
sort by notes in ascending order
"""
NOTES_ASC
"""
sort by notes in descending order
"""
NOTES_DESC
"""
sort by notified_at in ascending order
"""
NOTIFIED_AT_ASC
"""
sort by notified_at in descending order
"""
NOTIFIED_AT_DESC
"""
sort by partner_commission_percent in ascending order
"""
PARTNER_COMMISSION_PERCENT_ASC
"""
sort by partner_commission_percent in descending order
"""
PARTNER_COMMISSION_PERCENT_DESC
"""
sort by partner_id in ascending order
"""
PARTNER_ID_ASC
"""
sort by partner_id in descending order
"""
PARTNER_ID_DESC
"""
sort by partner_invoiced_at in ascending order
"""
PARTNER_INVOICED_AT_ASC
"""
sort by partner_invoiced_at in descending order
"""
PARTNER_INVOICED_AT_DESC
"""
sort by partner_paid_at in ascending order
"""
PARTNER_PAID_AT_ASC
"""
sort by partner_paid_at in descending order
"""
PARTNER_PAID_AT_DESC
"""
sort by reference_id in ascending order
"""
REFERENCE_ID_ASC
"""
sort by reference_id in descending order
"""
REFERENCE_ID_DESC
"""
sort by sale_date in ascending order
"""
SALE_DATE_ASC
"""
sort by sale_date in descending order
"""
SALE_DATE_DESC
"""
sort by sale_location in ascending order
"""
SALE_LOCATION_ASC
"""
sort by sale_location in descending order
"""
SALE_LOCATION_DESC
"""
sort by sale_lot_number in ascending order
"""
SALE_LOT_NUMBER_ASC
"""
sort by sale_lot_number in descending order
"""
SALE_LOT_NUMBER_DESC
"""
sort by sale_name in ascending order
"""
SALE_NAME_ASC
"""
sort by sale_name in descending order
"""
SALE_NAME_DESC
"""
sort by sale_price_cents in ascending order
"""
SALE_PRICE_CENTS_ASC
"""
sort by sale_price_cents in descending order
"""
SALE_PRICE_CENTS_DESC
"""
sort by state in ascending order
"""
STATE_ASC
"""
sort by state in descending order
"""
STATE_DESC
"""
sort by submission_id in ascending order
"""
SUBMISSION_ID_ASC
"""
sort by submission_id in descending order
"""
SUBMISSION_ID_DESC
"""
sort by updated_at in ascending order
"""
UPDATED_AT_ASC
"""
sort by updated_at in descending order
"""
UPDATED_AT_DESC
}
enum ConsignmentState {
BOUGHT_IN
CANCELLED
OPEN
SOLD
}
"""
Autogenerated input type of CreateOfferMutation
"""
input CreateOfferMutationInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
commissionPercentWhole: Int!
createdById: String
currency: String
deadlineToConsign: String
gravityPartnerId: String!
highEstimateDollars: Int
insuranceInfo: String
lowEstimateDollars: Int
notes: String
offerType: String
otherFeesInfo: String
partnerInfo: String
photographyInfo: String
saleDate: Date
saleLocation: String
saleName: String
shippingInfo: String
startingBidDollars: Int
state: String
submissionId: ID!
}
"""
Autogenerated return type of CreateOfferMutation
"""
type CreateOfferMutationPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
consignmentOffer: Offer
}
"""
Autogenerated input type of CreateOfferResponseMutation
"""
input CreateOfferResponseMutationInput {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
comments: String
intendedState: IntendedState!
offerId: ID!
phoneNumber: String
rejectionReason: String
}
"""
Autogenerated return type of CreateOfferResponseMutation
"""
type CreateOfferResponseMutationPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
consignmentOfferResponse: OfferResponse
}
"""
Autogenerated input type of CreateSubmissionMutation
"""
input CreateSubmissionMutationInput {
additionalInfo: String
artistID: String!
attributionClass: AttributionClass
authenticityCertificate: Boolean
category: Category
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
coaByAuthenticatingBody: Boolean
coaByGallery: Boolean
currency: String
depth: String
dimensionsMetric: String
edition: Boolean
editionNumber: String
"""
Deprecated: Use edition_size_formatted field instead
"""
editionSize: Int
editionSizeFormatted: String
height: String
locationAddress: String
locationAddress2: String
locationCity: String
locationCountry: String
locationCountryCode: String
locationPostalCode: String
locationState: String
medium: String
minimumPriceDollars: Int
myCollectionArtworkID: String
provenance: String
sessionID: String
signature: Boolean
source: SubmissionSource
"""
If this artwork exists in Gravity, its ID
"""
sourceArtworkID: String
state: State
title: String
userAgent: String
userEmail: String
userName: String
userPhone: String
utmMedium: String
utmSource: String
utmTerm: String
width: String
year: String
}
"""
Autogenerated return type of CreateSubmissionMutation
"""
type CreateSubmissionMutationPayload {
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
consignmentSubmission: Submission
}
"""
Date in YYYY-MM-DD format
"""
scalar Date
"""
An ISO 8601-encoded datetime
"""
scalar ISO8601DateTime
enum IntendedState {
ACCEPTED
REJECTED
REVIEW
}
"""
Represents untyped JSON
"""
scalar JSON
"""
Mutation root for this schema
"""
type Mutation {
addAssetToConsignmentSubmission(
"""
Parameters for AddAssetToConsignmentSubmission
"""
input: AddAssetToConsignmentSubmissionInput!
): AddAssetToConsignmentSubmissionPayload
addAssetsToConsignmentSubmission(
"""
Parameters for AddAssetsToConsignmentSubmission
"""
input: AddAssetsToConsignmentSubmissionInput!
): AddAssetsToConsignmentSubmissionPayload
addUserToSubmission(
"""
Parameters for AddUserToSubmissionMutation
"""
input: AddUserToSubmissionMutationInput!
): AddUserToSubmissionMutationPayload
createConsignmentOffer(
"""
Parameters for CreateOfferMutation
"""
input: CreateOfferMutationInput!
): CreateOfferMutationPayload
createConsignmentOfferResponse(
"""
Parameters for CreateOfferResponseMutation
"""
input: CreateOfferResponseMutationInput!
): CreateOfferResponseMutationPayload
createConsignmentSubmission(
"""
Parameters for CreateSubmissionMutation
"""
input: CreateSubmissionMutationInput!
): CreateSubmissionMutationPayload
removeAssetFromConsignmentSubmission(
"""
Parameters for RemoveAssetFromConsignmentSubmission
"""
input: RemoveAssetFromConsignmentSubmissionInput!
): RemoveAssetFromConsignmentSubmissionPayload
updateConsignmentSubmission(
"""
Parameters for UpdateSubmissionMutation
"""
input: UpdateSubmissionMutationInput!
): UpdateSubmissionMutationPayload
}
"""
Consignment Offer
"""
type Offer {
commissionPercentWhole: Int
createdAt: ISO8601DateTime
createdById: ID
currency: String
deadlineToConsign: String
highEstimateCents: Int
"""
Uniq ID for this offer
"""
id: ID!
insuranceInfo: String
lowEstimateCents: Int
notes: String
offerType: String
otherFeesInfo: String
partnerInfo: String
photographyInfo: String
saleDate: String
saleLocation: String
saleName: String
shippingInfo: String
startingBidCents: Int
state: String
submission: Submission!
}
"""
The connection type for Offer.
"""
type OfferConnection {
"""
A list of edges.
"""
edges: [OfferEdge]
"""
A list of nodes.
"""
nodes: [Offer]
pageCursors: PageCursors
"""
Information to aid in pagination.
"""
pageInfo: PageInfo!
totalCount: Int
totalPages: Int
}
"""
An edge in a connection.
"""
type OfferEdge {
"""
A cursor for use in pagination.
"""
cursor: String!
"""
The item at the end of the edge.
"""
node: Offer
}
"""
Consignment Offer Response
"""
type OfferResponse {
comments: String
"""
Uniq ID for this offer response
"""
id: ID!
intendedState: IntendedState!
offer: Offer!
phoneNumber: String
rejectionReason: String
}
enum OfferSort {
"""
sort by commission_percent in ascending order
"""
COMMISSION_PERCENT_ASC
"""
sort by commission_percent in descending order
"""
COMMISSION_PERCENT_DESC
"""
sort by consigned_at in ascending order
"""
CONSIGNED_AT_ASC
"""
sort by consigned_at in descending order
"""
CONSIGNED_AT_DESC
"""
sort by created_at in ascending order
"""
CREATED_AT_ASC
"""
sort by created_at in descending order
"""
CREATED_AT_DESC
"""
sort by created_by_id in ascending order
"""
CREATED_BY_ID_ASC
"""
sort by created_by_id in descending order
"""
CREATED_BY_ID_DESC
"""
sort by currency in ascending order
"""
CURRENCY_ASC
"""
sort by currency in descending order
"""
CURRENCY_DESC
"""
sort by deadline_to_consign in ascending order
"""
DEADLINE_TO_CONSIGN_ASC
"""
sort by deadline_to_consign in descending order
"""
DEADLINE_TO_CONSIGN_DESC
"""
sort by high_estimate_cents in ascending order
"""
HIGH_ESTIMATE_CENTS_ASC
"""
sort by high_estimate_cents in descending order
"""
HIGH_ESTIMATE_CENTS_DESC
"""
sort by id in ascending order
"""
ID_ASC
"""
sort by id in descending order
"""
ID_DESC
"""
sort by insurance_info in ascending order
"""
INSURANCE_INFO_ASC
"""
sort by insurance_info in descending order
"""
INSURANCE_INFO_DESC
"""
sort by low_estimate_cents in ascending order
"""
LOW_ESTIMATE_CENTS_ASC
"""
sort by low_estimate_cents in descending order
"""
LOW_ESTIMATE_CENTS_DESC
"""
sort by notes in ascending order
"""
NOTES_ASC
"""
sort by notes in descending order
"""
NOTES_DESC
"""
sort by offer_responses_count in ascending order
"""
OFFER_RESPONSES_COUNT_ASC
"""
sort by offer_responses_count in descending order
"""
OFFER_RESPONSES_COUNT_DESC
"""
sort by offer_type in ascending order
"""
OFFER_TYPE_ASC
"""
sort by offer_type in descending order
"""
OFFER_TYPE_DESC
"""
sort by other_fees_info in ascending order
"""
OTHER_FEES_INFO_ASC
"""
sort by other_fees_info in descending order
"""
OTHER_FEES_INFO_DESC
"""
sort by override_email in ascending order
"""
OVERRIDE_EMAIL_ASC
"""
sort by override_email in descending order
"""
OVERRIDE_EMAIL_DESC
"""
sort by partner_info in ascending order
"""
PARTNER_INFO_ASC
"""
sort by partner_info in descending order
"""
PARTNER_INFO_DESC
"""
sort by partner_submission_id in ascending order
"""
PARTNER_SUBMISSION_ID_ASC
"""
sort by partner_submission_id in descending order
"""
PARTNER_SUBMISSION_ID_DESC
"""
sort by photography_info in ascending order
"""
PHOTOGRAPHY_INFO_ASC
"""
sort by photography_info in descending order
"""
PHOTOGRAPHY_INFO_DESC
"""
sort by price_cents in ascending order
"""
PRICE_CENTS_ASC
"""
sort by price_cents in descending order
"""
PRICE_CENTS_DESC
"""
sort by reference_id in ascending order
"""
REFERENCE_ID_ASC
"""
sort by reference_id in descending order
"""
REFERENCE_ID_DESC
"""
sort by rejected_at in ascending order
"""
REJECTED_AT_ASC
"""
sort by rejected_at in descending order
"""
REJECTED_AT_DESC
"""
sort by rejected_by in ascending order
"""
REJECTED_BY_ASC
"""
sort by rejected_by in descending order
"""
REJECTED_BY_DESC
"""
sort by rejection_note in ascending order
"""
REJECTION_NOTE_ASC
"""
sort by rejection_note in descending order
"""
REJECTION_NOTE_DESC
"""
sort by rejection_reason in ascending order
"""
REJECTION_REASON_ASC
"""
sort by rejection_reason in descending order
"""
REJECTION_REASON_DESC
"""
sort by review_started_at in ascending order
"""
REVIEW_STARTED_AT_ASC
"""
sort by review_started_at in descending order
"""
REVIEW_STARTED_AT_DESC
"""
sort by sale_date in ascending order
"""
SALE_DATE_ASC
"""
sort by sale_date in descending order
"""
SALE_DATE_DESC