billfixers-partner 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ module Billfixers
2
+ module Partner
3
+ VERSION = '0.1.0'.freeze
4
+ end
5
+ end
@@ -0,0 +1,4036 @@
1
+ {
2
+ "data": {
3
+ "__schema": {
4
+ "queryType": {
5
+ "name": "Query"
6
+ },
7
+ "mutationType": {
8
+ "name": "Mutation"
9
+ },
10
+ "subscriptionType": null,
11
+ "types": [
12
+ {
13
+ "kind": "INPUT_OBJECT",
14
+ "name": "AcceptOfferInput",
15
+ "description": "Autogenerated input type of AcceptOffer",
16
+ "fields": null,
17
+ "inputFields": [
18
+ {
19
+ "name": "id",
20
+ "description": null,
21
+ "type": {
22
+ "kind": "NON_NULL",
23
+ "name": null,
24
+ "ofType": {
25
+ "kind": "SCALAR",
26
+ "name": "ID",
27
+ "ofType": null
28
+ }
29
+ },
30
+ "defaultValue": null
31
+ },
32
+ {
33
+ "name": "clientMutationId",
34
+ "description": "A unique identifier for the client performing the mutation.",
35
+ "type": {
36
+ "kind": "SCALAR",
37
+ "name": "String",
38
+ "ofType": null
39
+ },
40
+ "defaultValue": null
41
+ }
42
+ ],
43
+ "interfaces": null,
44
+ "enumValues": null,
45
+ "possibleTypes": null
46
+ },
47
+ {
48
+ "kind": "OBJECT",
49
+ "name": "AcceptOfferPayload",
50
+ "description": "Autogenerated return type of AcceptOffer",
51
+ "fields": [
52
+ {
53
+ "name": "clientMutationId",
54
+ "description": "A unique identifier for the client performing the mutation.",
55
+ "args": [],
56
+ "type": {
57
+ "kind": "SCALAR",
58
+ "name": "String",
59
+ "ofType": null
60
+ },
61
+ "isDeprecated": false,
62
+ "deprecationReason": null
63
+ },
64
+ {
65
+ "name": "errors",
66
+ "description": null,
67
+ "args": [],
68
+ "type": {
69
+ "kind": "NON_NULL",
70
+ "name": null,
71
+ "ofType": {
72
+ "kind": "LIST",
73
+ "name": null,
74
+ "ofType": {
75
+ "kind": "NON_NULL",
76
+ "name": null,
77
+ "ofType": {
78
+ "kind": "SCALAR",
79
+ "name": "String",
80
+ "ofType": null
81
+ }
82
+ }
83
+ }
84
+ },
85
+ "isDeprecated": false,
86
+ "deprecationReason": null
87
+ },
88
+ {
89
+ "name": "offer",
90
+ "description": null,
91
+ "args": [],
92
+ "type": {
93
+ "kind": "OBJECT",
94
+ "name": "Offer",
95
+ "ofType": null
96
+ },
97
+ "isDeprecated": false,
98
+ "deprecationReason": null
99
+ },
100
+ {
101
+ "name": "success",
102
+ "description": null,
103
+ "args": [],
104
+ "type": {
105
+ "kind": "NON_NULL",
106
+ "name": null,
107
+ "ofType": {
108
+ "kind": "SCALAR",
109
+ "name": "Boolean",
110
+ "ofType": null
111
+ }
112
+ },
113
+ "isDeprecated": false,
114
+ "deprecationReason": null
115
+ }
116
+ ],
117
+ "inputFields": null,
118
+ "interfaces": [],
119
+ "enumValues": null,
120
+ "possibleTypes": null
121
+ },
122
+ {
123
+ "kind": "OBJECT",
124
+ "name": "Bill",
125
+ "description": null,
126
+ "fields": [
127
+ {
128
+ "name": "createdAt",
129
+ "description": "The date the record was created",
130
+ "args": [],
131
+ "type": {
132
+ "kind": "NON_NULL",
133
+ "name": null,
134
+ "ofType": {
135
+ "kind": "SCALAR",
136
+ "name": "DateTime",
137
+ "ofType": null
138
+ }
139
+ },
140
+ "isDeprecated": false,
141
+ "deprecationReason": null
142
+ },
143
+ {
144
+ "name": "customer",
145
+ "description": null,
146
+ "args": [],
147
+ "type": {
148
+ "kind": "NON_NULL",
149
+ "name": null,
150
+ "ofType": {
151
+ "kind": "OBJECT",
152
+ "name": "Customer",
153
+ "ofType": null
154
+ }
155
+ },
156
+ "isDeprecated": false,
157
+ "deprecationReason": null
158
+ },
159
+ {
160
+ "name": "id",
161
+ "description": "Alpha-numeric unique identifier",
162
+ "args": [],
163
+ "type": {
164
+ "kind": "NON_NULL",
165
+ "name": null,
166
+ "ofType": {
167
+ "kind": "SCALAR",
168
+ "name": "String",
169
+ "ofType": null
170
+ }
171
+ },
172
+ "isDeprecated": false,
173
+ "deprecationReason": null
174
+ },
175
+ {
176
+ "name": "items",
177
+ "description": "The items on the bill",
178
+ "args": [],
179
+ "type": {
180
+ "kind": "NON_NULL",
181
+ "name": null,
182
+ "ofType": {
183
+ "kind": "LIST",
184
+ "name": null,
185
+ "ofType": {
186
+ "kind": "NON_NULL",
187
+ "name": null,
188
+ "ofType": {
189
+ "kind": "OBJECT",
190
+ "name": "Item",
191
+ "ofType": null
192
+ }
193
+ }
194
+ }
195
+ },
196
+ "isDeprecated": false,
197
+ "deprecationReason": null
198
+ },
199
+ {
200
+ "name": "offers",
201
+ "description": null,
202
+ "args": [],
203
+ "type": {
204
+ "kind": "NON_NULL",
205
+ "name": null,
206
+ "ofType": {
207
+ "kind": "LIST",
208
+ "name": null,
209
+ "ofType": {
210
+ "kind": "NON_NULL",
211
+ "name": null,
212
+ "ofType": {
213
+ "kind": "OBJECT",
214
+ "name": "Offer",
215
+ "ofType": null
216
+ }
217
+ }
218
+ }
219
+ },
220
+ "isDeprecated": false,
221
+ "deprecationReason": null
222
+ },
223
+ {
224
+ "name": "provider",
225
+ "description": null,
226
+ "args": [],
227
+ "type": {
228
+ "kind": "NON_NULL",
229
+ "name": null,
230
+ "ofType": {
231
+ "kind": "OBJECT",
232
+ "name": "Provider",
233
+ "ofType": null
234
+ }
235
+ },
236
+ "isDeprecated": false,
237
+ "deprecationReason": null
238
+ },
239
+ {
240
+ "name": "providerId",
241
+ "description": "Billfixer's alpha-numeric Provider ID",
242
+ "args": [],
243
+ "type": {
244
+ "kind": "NON_NULL",
245
+ "name": null,
246
+ "ofType": {
247
+ "kind": "SCALAR",
248
+ "name": "ID",
249
+ "ofType": null
250
+ }
251
+ },
252
+ "isDeprecated": false,
253
+ "deprecationReason": null
254
+ },
255
+ {
256
+ "name": "status",
257
+ "description": "Status of the bill",
258
+ "args": [],
259
+ "type": {
260
+ "kind": "NON_NULL",
261
+ "name": null,
262
+ "ofType": {
263
+ "kind": "SCALAR",
264
+ "name": "String",
265
+ "ofType": null
266
+ }
267
+ },
268
+ "isDeprecated": false,
269
+ "deprecationReason": null
270
+ },
271
+ {
272
+ "name": "title",
273
+ "description": "Title of the bill",
274
+ "args": [],
275
+ "type": {
276
+ "kind": "NON_NULL",
277
+ "name": null,
278
+ "ofType": {
279
+ "kind": "SCALAR",
280
+ "name": "String",
281
+ "ofType": null
282
+ }
283
+ },
284
+ "isDeprecated": false,
285
+ "deprecationReason": null
286
+ },
287
+ {
288
+ "name": "totalSavings",
289
+ "description": "The total value gained from negotiations",
290
+ "args": [],
291
+ "type": {
292
+ "kind": "NON_NULL",
293
+ "name": null,
294
+ "ofType": {
295
+ "kind": "SCALAR",
296
+ "name": "Money",
297
+ "ofType": null
298
+ }
299
+ },
300
+ "isDeprecated": false,
301
+ "deprecationReason": null
302
+ },
303
+ {
304
+ "name": "updatedAt",
305
+ "description": "The last time the record was updated",
306
+ "args": [],
307
+ "type": {
308
+ "kind": "NON_NULL",
309
+ "name": null,
310
+ "ofType": {
311
+ "kind": "SCALAR",
312
+ "name": "DateTime",
313
+ "ofType": null
314
+ }
315
+ },
316
+ "isDeprecated": false,
317
+ "deprecationReason": null
318
+ }
319
+ ],
320
+ "inputFields": null,
321
+ "interfaces": [],
322
+ "enumValues": null,
323
+ "possibleTypes": null
324
+ },
325
+ {
326
+ "kind": "INPUT_OBJECT",
327
+ "name": "BillAttributes",
328
+ "description": "Attributes for creating or updating a bill",
329
+ "fields": null,
330
+ "inputFields": [
331
+ {
332
+ "name": "providerId",
333
+ "description": "The ID of the Provider",
334
+ "type": {
335
+ "kind": "NON_NULL",
336
+ "name": null,
337
+ "ofType": {
338
+ "kind": "SCALAR",
339
+ "name": "ID",
340
+ "ofType": null
341
+ }
342
+ },
343
+ "defaultValue": null
344
+ },
345
+ {
346
+ "name": "last4ssn",
347
+ "description": "The last 4 digits of the customer's social security number",
348
+ "type": {
349
+ "kind": "SCALAR",
350
+ "name": "String",
351
+ "ofType": null
352
+ },
353
+ "defaultValue": null
354
+ },
355
+ {
356
+ "name": "passcode",
357
+ "description": "The passcode used to authorize changes to the account",
358
+ "type": {
359
+ "kind": "SCALAR",
360
+ "name": "String",
361
+ "ofType": null
362
+ },
363
+ "defaultValue": null
364
+ },
365
+ {
366
+ "name": "allowsContract",
367
+ "description": "Indicates if the customer is willing to accept a contract to save money",
368
+ "type": {
369
+ "kind": "SCALAR",
370
+ "name": "Boolean",
371
+ "ofType": null
372
+ },
373
+ "defaultValue": null
374
+ },
375
+ {
376
+ "name": "autoRenegotiate",
377
+ "description": "Inidicates if the customer is wants the bill to be renegotiated after savings/discounts expire",
378
+ "type": {
379
+ "kind": "SCALAR",
380
+ "name": "Boolean",
381
+ "ofType": null
382
+ },
383
+ "defaultValue": null
384
+ },
385
+ {
386
+ "name": "documentUrls",
387
+ "description": "Array of document URLs to be attached to the bill",
388
+ "type": {
389
+ "kind": "LIST",
390
+ "name": null,
391
+ "ofType": {
392
+ "kind": "NON_NULL",
393
+ "name": null,
394
+ "ofType": {
395
+ "kind": "SCALAR",
396
+ "name": "String",
397
+ "ofType": null
398
+ }
399
+ }
400
+ },
401
+ "defaultValue": null
402
+ },
403
+ {
404
+ "name": "customer",
405
+ "description": null,
406
+ "type": {
407
+ "kind": "NON_NULL",
408
+ "name": null,
409
+ "ofType": {
410
+ "kind": "INPUT_OBJECT",
411
+ "name": "CustomerAttributes",
412
+ "ofType": null
413
+ }
414
+ },
415
+ "defaultValue": null
416
+ }
417
+ ],
418
+ "interfaces": null,
419
+ "enumValues": null,
420
+ "possibleTypes": null
421
+ },
422
+ {
423
+ "kind": "OBJECT",
424
+ "name": "BillConnection",
425
+ "description": "The connection type for Bill.",
426
+ "fields": [
427
+ {
428
+ "name": "edges",
429
+ "description": "A list of edges.",
430
+ "args": [],
431
+ "type": {
432
+ "kind": "NON_NULL",
433
+ "name": null,
434
+ "ofType": {
435
+ "kind": "LIST",
436
+ "name": null,
437
+ "ofType": {
438
+ "kind": "NON_NULL",
439
+ "name": null,
440
+ "ofType": {
441
+ "kind": "OBJECT",
442
+ "name": "BillEdge",
443
+ "ofType": null
444
+ }
445
+ }
446
+ }
447
+ },
448
+ "isDeprecated": false,
449
+ "deprecationReason": null
450
+ },
451
+ {
452
+ "name": "nodes",
453
+ "description": "A list of nodes.",
454
+ "args": [],
455
+ "type": {
456
+ "kind": "NON_NULL",
457
+ "name": null,
458
+ "ofType": {
459
+ "kind": "LIST",
460
+ "name": null,
461
+ "ofType": {
462
+ "kind": "NON_NULL",
463
+ "name": null,
464
+ "ofType": {
465
+ "kind": "OBJECT",
466
+ "name": "Bill",
467
+ "ofType": null
468
+ }
469
+ }
470
+ }
471
+ },
472
+ "isDeprecated": false,
473
+ "deprecationReason": null
474
+ },
475
+ {
476
+ "name": "pageInfo",
477
+ "description": "Information to aid in pagination.",
478
+ "args": [],
479
+ "type": {
480
+ "kind": "NON_NULL",
481
+ "name": null,
482
+ "ofType": {
483
+ "kind": "OBJECT",
484
+ "name": "PageInfo",
485
+ "ofType": null
486
+ }
487
+ },
488
+ "isDeprecated": false,
489
+ "deprecationReason": null
490
+ },
491
+ {
492
+ "name": "totalCount",
493
+ "description": null,
494
+ "args": [],
495
+ "type": {
496
+ "kind": "NON_NULL",
497
+ "name": null,
498
+ "ofType": {
499
+ "kind": "SCALAR",
500
+ "name": "Int",
501
+ "ofType": null
502
+ }
503
+ },
504
+ "isDeprecated": false,
505
+ "deprecationReason": null
506
+ },
507
+ {
508
+ "name": "totalSavings",
509
+ "description": null,
510
+ "args": [],
511
+ "type": {
512
+ "kind": "NON_NULL",
513
+ "name": null,
514
+ "ofType": {
515
+ "kind": "SCALAR",
516
+ "name": "Money",
517
+ "ofType": null
518
+ }
519
+ },
520
+ "isDeprecated": false,
521
+ "deprecationReason": null
522
+ }
523
+ ],
524
+ "inputFields": null,
525
+ "interfaces": [],
526
+ "enumValues": null,
527
+ "possibleTypes": null
528
+ },
529
+ {
530
+ "kind": "OBJECT",
531
+ "name": "BillEdge",
532
+ "description": "An edge in a connection.",
533
+ "fields": [
534
+ {
535
+ "name": "cursor",
536
+ "description": "A cursor for use in pagination.",
537
+ "args": [],
538
+ "type": {
539
+ "kind": "NON_NULL",
540
+ "name": null,
541
+ "ofType": {
542
+ "kind": "SCALAR",
543
+ "name": "String",
544
+ "ofType": null
545
+ }
546
+ },
547
+ "isDeprecated": false,
548
+ "deprecationReason": null
549
+ },
550
+ {
551
+ "name": "node",
552
+ "description": "The item at the end of the edge.",
553
+ "args": [],
554
+ "type": {
555
+ "kind": "OBJECT",
556
+ "name": "Bill",
557
+ "ofType": null
558
+ },
559
+ "isDeprecated": false,
560
+ "deprecationReason": null
561
+ }
562
+ ],
563
+ "inputFields": null,
564
+ "interfaces": [],
565
+ "enumValues": null,
566
+ "possibleTypes": null
567
+ },
568
+ {
569
+ "kind": "SCALAR",
570
+ "name": "Boolean",
571
+ "description": "Represents `true` or `false` values.",
572
+ "fields": null,
573
+ "inputFields": null,
574
+ "interfaces": null,
575
+ "enumValues": null,
576
+ "possibleTypes": null
577
+ },
578
+ {
579
+ "kind": "INPUT_OBJECT",
580
+ "name": "CancelBillInput",
581
+ "description": "Autogenerated input type of CancelBill",
582
+ "fields": null,
583
+ "inputFields": [
584
+ {
585
+ "name": "id",
586
+ "description": null,
587
+ "type": {
588
+ "kind": "NON_NULL",
589
+ "name": null,
590
+ "ofType": {
591
+ "kind": "SCALAR",
592
+ "name": "String",
593
+ "ofType": null
594
+ }
595
+ },
596
+ "defaultValue": null
597
+ },
598
+ {
599
+ "name": "clientMutationId",
600
+ "description": "A unique identifier for the client performing the mutation.",
601
+ "type": {
602
+ "kind": "SCALAR",
603
+ "name": "String",
604
+ "ofType": null
605
+ },
606
+ "defaultValue": null
607
+ }
608
+ ],
609
+ "interfaces": null,
610
+ "enumValues": null,
611
+ "possibleTypes": null
612
+ },
613
+ {
614
+ "kind": "OBJECT",
615
+ "name": "CancelBillPayload",
616
+ "description": "Autogenerated return type of CancelBill",
617
+ "fields": [
618
+ {
619
+ "name": "clientMutationId",
620
+ "description": "A unique identifier for the client performing the mutation.",
621
+ "args": [],
622
+ "type": {
623
+ "kind": "SCALAR",
624
+ "name": "String",
625
+ "ofType": null
626
+ },
627
+ "isDeprecated": false,
628
+ "deprecationReason": null
629
+ },
630
+ {
631
+ "name": "success",
632
+ "description": null,
633
+ "args": [],
634
+ "type": {
635
+ "kind": "NON_NULL",
636
+ "name": null,
637
+ "ofType": {
638
+ "kind": "SCALAR",
639
+ "name": "Boolean",
640
+ "ofType": null
641
+ }
642
+ },
643
+ "isDeprecated": false,
644
+ "deprecationReason": null
645
+ }
646
+ ],
647
+ "inputFields": null,
648
+ "interfaces": [],
649
+ "enumValues": null,
650
+ "possibleTypes": null
651
+ },
652
+ {
653
+ "kind": "INPUT_OBJECT",
654
+ "name": "CreateBillInput",
655
+ "description": "Autogenerated input type of CreateBill",
656
+ "fields": null,
657
+ "inputFields": [
658
+ {
659
+ "name": "bill",
660
+ "description": null,
661
+ "type": {
662
+ "kind": "NON_NULL",
663
+ "name": null,
664
+ "ofType": {
665
+ "kind": "INPUT_OBJECT",
666
+ "name": "BillAttributes",
667
+ "ofType": null
668
+ }
669
+ },
670
+ "defaultValue": null
671
+ },
672
+ {
673
+ "name": "clientMutationId",
674
+ "description": "A unique identifier for the client performing the mutation.",
675
+ "type": {
676
+ "kind": "SCALAR",
677
+ "name": "String",
678
+ "ofType": null
679
+ },
680
+ "defaultValue": null
681
+ }
682
+ ],
683
+ "interfaces": null,
684
+ "enumValues": null,
685
+ "possibleTypes": null
686
+ },
687
+ {
688
+ "kind": "OBJECT",
689
+ "name": "CreateBillPayload",
690
+ "description": "Autogenerated return type of CreateBill",
691
+ "fields": [
692
+ {
693
+ "name": "bill",
694
+ "description": null,
695
+ "args": [],
696
+ "type": {
697
+ "kind": "OBJECT",
698
+ "name": "Bill",
699
+ "ofType": null
700
+ },
701
+ "isDeprecated": false,
702
+ "deprecationReason": null
703
+ },
704
+ {
705
+ "name": "clientMutationId",
706
+ "description": "A unique identifier for the client performing the mutation.",
707
+ "args": [],
708
+ "type": {
709
+ "kind": "SCALAR",
710
+ "name": "String",
711
+ "ofType": null
712
+ },
713
+ "isDeprecated": false,
714
+ "deprecationReason": null
715
+ },
716
+ {
717
+ "name": "errors",
718
+ "description": null,
719
+ "args": [],
720
+ "type": {
721
+ "kind": "NON_NULL",
722
+ "name": null,
723
+ "ofType": {
724
+ "kind": "LIST",
725
+ "name": null,
726
+ "ofType": {
727
+ "kind": "NON_NULL",
728
+ "name": null,
729
+ "ofType": {
730
+ "kind": "SCALAR",
731
+ "name": "String",
732
+ "ofType": null
733
+ }
734
+ }
735
+ }
736
+ },
737
+ "isDeprecated": false,
738
+ "deprecationReason": null
739
+ },
740
+ {
741
+ "name": "success",
742
+ "description": null,
743
+ "args": [],
744
+ "type": {
745
+ "kind": "NON_NULL",
746
+ "name": null,
747
+ "ofType": {
748
+ "kind": "SCALAR",
749
+ "name": "Boolean",
750
+ "ofType": null
751
+ }
752
+ },
753
+ "isDeprecated": false,
754
+ "deprecationReason": null
755
+ }
756
+ ],
757
+ "inputFields": null,
758
+ "interfaces": [],
759
+ "enumValues": null,
760
+ "possibleTypes": null
761
+ },
762
+ {
763
+ "kind": "INPUT_OBJECT",
764
+ "name": "CreateCustomerInput",
765
+ "description": "Autogenerated input type of CreateCustomer",
766
+ "fields": null,
767
+ "inputFields": [
768
+ {
769
+ "name": "customer",
770
+ "description": null,
771
+ "type": {
772
+ "kind": "NON_NULL",
773
+ "name": null,
774
+ "ofType": {
775
+ "kind": "INPUT_OBJECT",
776
+ "name": "CustomerAttributes",
777
+ "ofType": null
778
+ }
779
+ },
780
+ "defaultValue": null
781
+ },
782
+ {
783
+ "name": "clientMutationId",
784
+ "description": "A unique identifier for the client performing the mutation.",
785
+ "type": {
786
+ "kind": "SCALAR",
787
+ "name": "String",
788
+ "ofType": null
789
+ },
790
+ "defaultValue": null
791
+ }
792
+ ],
793
+ "interfaces": null,
794
+ "enumValues": null,
795
+ "possibleTypes": null
796
+ },
797
+ {
798
+ "kind": "OBJECT",
799
+ "name": "CreateCustomerPayload",
800
+ "description": "Autogenerated return type of CreateCustomer",
801
+ "fields": [
802
+ {
803
+ "name": "clientMutationId",
804
+ "description": "A unique identifier for the client performing the mutation.",
805
+ "args": [],
806
+ "type": {
807
+ "kind": "SCALAR",
808
+ "name": "String",
809
+ "ofType": null
810
+ },
811
+ "isDeprecated": false,
812
+ "deprecationReason": null
813
+ },
814
+ {
815
+ "name": "customer",
816
+ "description": null,
817
+ "args": [],
818
+ "type": {
819
+ "kind": "OBJECT",
820
+ "name": "Customer",
821
+ "ofType": null
822
+ },
823
+ "isDeprecated": false,
824
+ "deprecationReason": null
825
+ },
826
+ {
827
+ "name": "errors",
828
+ "description": null,
829
+ "args": [],
830
+ "type": {
831
+ "kind": "NON_NULL",
832
+ "name": null,
833
+ "ofType": {
834
+ "kind": "LIST",
835
+ "name": null,
836
+ "ofType": {
837
+ "kind": "NON_NULL",
838
+ "name": null,
839
+ "ofType": {
840
+ "kind": "SCALAR",
841
+ "name": "String",
842
+ "ofType": null
843
+ }
844
+ }
845
+ }
846
+ },
847
+ "isDeprecated": false,
848
+ "deprecationReason": null
849
+ },
850
+ {
851
+ "name": "success",
852
+ "description": null,
853
+ "args": [],
854
+ "type": {
855
+ "kind": "NON_NULL",
856
+ "name": null,
857
+ "ofType": {
858
+ "kind": "SCALAR",
859
+ "name": "Boolean",
860
+ "ofType": null
861
+ }
862
+ },
863
+ "isDeprecated": false,
864
+ "deprecationReason": null
865
+ }
866
+ ],
867
+ "inputFields": null,
868
+ "interfaces": [],
869
+ "enumValues": null,
870
+ "possibleTypes": null
871
+ },
872
+ {
873
+ "kind": "OBJECT",
874
+ "name": "Customer",
875
+ "description": "The person being billed by a provider",
876
+ "fields": [
877
+ {
878
+ "name": "addressCity",
879
+ "description": null,
880
+ "args": [],
881
+ "type": {
882
+ "kind": "SCALAR",
883
+ "name": "String",
884
+ "ofType": null
885
+ },
886
+ "isDeprecated": false,
887
+ "deprecationReason": null
888
+ },
889
+ {
890
+ "name": "addressCountryCode",
891
+ "description": null,
892
+ "args": [],
893
+ "type": {
894
+ "kind": "SCALAR",
895
+ "name": "String",
896
+ "ofType": null
897
+ },
898
+ "isDeprecated": false,
899
+ "deprecationReason": null
900
+ },
901
+ {
902
+ "name": "addressLine1",
903
+ "description": null,
904
+ "args": [],
905
+ "type": {
906
+ "kind": "SCALAR",
907
+ "name": "String",
908
+ "ofType": null
909
+ },
910
+ "isDeprecated": false,
911
+ "deprecationReason": null
912
+ },
913
+ {
914
+ "name": "addressLine2",
915
+ "description": null,
916
+ "args": [],
917
+ "type": {
918
+ "kind": "SCALAR",
919
+ "name": "String",
920
+ "ofType": null
921
+ },
922
+ "isDeprecated": false,
923
+ "deprecationReason": null
924
+ },
925
+ {
926
+ "name": "addressPostalCode",
927
+ "description": null,
928
+ "args": [],
929
+ "type": {
930
+ "kind": "SCALAR",
931
+ "name": "String",
932
+ "ofType": null
933
+ },
934
+ "isDeprecated": false,
935
+ "deprecationReason": null
936
+ },
937
+ {
938
+ "name": "addressState",
939
+ "description": null,
940
+ "args": [],
941
+ "type": {
942
+ "kind": "SCALAR",
943
+ "name": "String",
944
+ "ofType": null
945
+ },
946
+ "isDeprecated": false,
947
+ "deprecationReason": null
948
+ },
949
+ {
950
+ "name": "avatarUrl",
951
+ "description": null,
952
+ "args": [],
953
+ "type": {
954
+ "kind": "NON_NULL",
955
+ "name": null,
956
+ "ofType": {
957
+ "kind": "SCALAR",
958
+ "name": "String",
959
+ "ofType": null
960
+ }
961
+ },
962
+ "isDeprecated": false,
963
+ "deprecationReason": null
964
+ },
965
+ {
966
+ "name": "b2b",
967
+ "description": null,
968
+ "args": [],
969
+ "type": {
970
+ "kind": "NON_NULL",
971
+ "name": null,
972
+ "ofType": {
973
+ "kind": "SCALAR",
974
+ "name": "Boolean",
975
+ "ofType": null
976
+ }
977
+ },
978
+ "isDeprecated": false,
979
+ "deprecationReason": null
980
+ },
981
+ {
982
+ "name": "bills",
983
+ "description": null,
984
+ "args": [
985
+ {
986
+ "name": "after",
987
+ "description": "Returns the elements in the list that come after the specified cursor.",
988
+ "type": {
989
+ "kind": "SCALAR",
990
+ "name": "String",
991
+ "ofType": null
992
+ },
993
+ "defaultValue": null
994
+ },
995
+ {
996
+ "name": "before",
997
+ "description": "Returns the elements in the list that come before the specified cursor.",
998
+ "type": {
999
+ "kind": "SCALAR",
1000
+ "name": "String",
1001
+ "ofType": null
1002
+ },
1003
+ "defaultValue": null
1004
+ },
1005
+ {
1006
+ "name": "first",
1007
+ "description": "Returns the first _n_ elements from the list.",
1008
+ "type": {
1009
+ "kind": "SCALAR",
1010
+ "name": "Int",
1011
+ "ofType": null
1012
+ },
1013
+ "defaultValue": null
1014
+ },
1015
+ {
1016
+ "name": "last",
1017
+ "description": "Returns the last _n_ elements from the list.",
1018
+ "type": {
1019
+ "kind": "SCALAR",
1020
+ "name": "Int",
1021
+ "ofType": null
1022
+ },
1023
+ "defaultValue": null
1024
+ }
1025
+ ],
1026
+ "type": {
1027
+ "kind": "NON_NULL",
1028
+ "name": null,
1029
+ "ofType": {
1030
+ "kind": "OBJECT",
1031
+ "name": "BillConnection",
1032
+ "ofType": null
1033
+ }
1034
+ },
1035
+ "isDeprecated": false,
1036
+ "deprecationReason": null
1037
+ },
1038
+ {
1039
+ "name": "createdAt",
1040
+ "description": null,
1041
+ "args": [],
1042
+ "type": {
1043
+ "kind": "NON_NULL",
1044
+ "name": null,
1045
+ "ofType": {
1046
+ "kind": "SCALAR",
1047
+ "name": "DateTime",
1048
+ "ofType": null
1049
+ }
1050
+ },
1051
+ "isDeprecated": false,
1052
+ "deprecationReason": null
1053
+ },
1054
+ {
1055
+ "name": "email",
1056
+ "description": null,
1057
+ "args": [],
1058
+ "type": {
1059
+ "kind": "NON_NULL",
1060
+ "name": null,
1061
+ "ofType": {
1062
+ "kind": "SCALAR",
1063
+ "name": "String",
1064
+ "ofType": null
1065
+ }
1066
+ },
1067
+ "isDeprecated": false,
1068
+ "deprecationReason": null
1069
+ },
1070
+ {
1071
+ "name": "firstName",
1072
+ "description": null,
1073
+ "args": [],
1074
+ "type": {
1075
+ "kind": "SCALAR",
1076
+ "name": "String",
1077
+ "ofType": null
1078
+ },
1079
+ "isDeprecated": false,
1080
+ "deprecationReason": null
1081
+ },
1082
+ {
1083
+ "name": "id",
1084
+ "description": null,
1085
+ "args": [],
1086
+ "type": {
1087
+ "kind": "NON_NULL",
1088
+ "name": null,
1089
+ "ofType": {
1090
+ "kind": "SCALAR",
1091
+ "name": "String",
1092
+ "ofType": null
1093
+ }
1094
+ },
1095
+ "isDeprecated": false,
1096
+ "deprecationReason": null
1097
+ },
1098
+ {
1099
+ "name": "lastName",
1100
+ "description": null,
1101
+ "args": [],
1102
+ "type": {
1103
+ "kind": "SCALAR",
1104
+ "name": "String",
1105
+ "ofType": null
1106
+ },
1107
+ "isDeprecated": false,
1108
+ "deprecationReason": null
1109
+ },
1110
+ {
1111
+ "name": "name",
1112
+ "description": null,
1113
+ "args": [],
1114
+ "type": {
1115
+ "kind": "NON_NULL",
1116
+ "name": null,
1117
+ "ofType": {
1118
+ "kind": "SCALAR",
1119
+ "name": "String",
1120
+ "ofType": null
1121
+ }
1122
+ },
1123
+ "isDeprecated": false,
1124
+ "deprecationReason": null
1125
+ },
1126
+ {
1127
+ "name": "phoneNumber",
1128
+ "description": null,
1129
+ "args": [],
1130
+ "type": {
1131
+ "kind": "SCALAR",
1132
+ "name": "String",
1133
+ "ofType": null
1134
+ },
1135
+ "isDeprecated": false,
1136
+ "deprecationReason": null
1137
+ },
1138
+ {
1139
+ "name": "updatedAt",
1140
+ "description": null,
1141
+ "args": [],
1142
+ "type": {
1143
+ "kind": "NON_NULL",
1144
+ "name": null,
1145
+ "ofType": {
1146
+ "kind": "SCALAR",
1147
+ "name": "DateTime",
1148
+ "ofType": null
1149
+ }
1150
+ },
1151
+ "isDeprecated": false,
1152
+ "deprecationReason": null
1153
+ }
1154
+ ],
1155
+ "inputFields": null,
1156
+ "interfaces": [],
1157
+ "enumValues": null,
1158
+ "possibleTypes": null
1159
+ },
1160
+ {
1161
+ "kind": "INPUT_OBJECT",
1162
+ "name": "CustomerAttributes",
1163
+ "description": "Attributes for creating or updating a customer",
1164
+ "fields": null,
1165
+ "inputFields": [
1166
+ {
1167
+ "name": "email",
1168
+ "description": null,
1169
+ "type": {
1170
+ "kind": "SCALAR",
1171
+ "name": "String",
1172
+ "ofType": null
1173
+ },
1174
+ "defaultValue": null
1175
+ },
1176
+ {
1177
+ "name": "id",
1178
+ "description": null,
1179
+ "type": {
1180
+ "kind": "SCALAR",
1181
+ "name": "String",
1182
+ "ofType": null
1183
+ },
1184
+ "defaultValue": null
1185
+ },
1186
+ {
1187
+ "name": "externalId",
1188
+ "description": null,
1189
+ "type": {
1190
+ "kind": "SCALAR",
1191
+ "name": "String",
1192
+ "ofType": null
1193
+ },
1194
+ "defaultValue": null
1195
+ },
1196
+ {
1197
+ "name": "firstName",
1198
+ "description": null,
1199
+ "type": {
1200
+ "kind": "SCALAR",
1201
+ "name": "String",
1202
+ "ofType": null
1203
+ },
1204
+ "defaultValue": null
1205
+ },
1206
+ {
1207
+ "name": "lastName",
1208
+ "description": null,
1209
+ "type": {
1210
+ "kind": "SCALAR",
1211
+ "name": "String",
1212
+ "ofType": null
1213
+ },
1214
+ "defaultValue": null
1215
+ },
1216
+ {
1217
+ "name": "vip",
1218
+ "description": null,
1219
+ "type": {
1220
+ "kind": "SCALAR",
1221
+ "name": "Boolean",
1222
+ "ofType": null
1223
+ },
1224
+ "defaultValue": null
1225
+ },
1226
+ {
1227
+ "name": "b2b",
1228
+ "description": null,
1229
+ "type": {
1230
+ "kind": "SCALAR",
1231
+ "name": "Boolean",
1232
+ "ofType": null
1233
+ },
1234
+ "defaultValue": null
1235
+ },
1236
+ {
1237
+ "name": "addressLine1",
1238
+ "description": null,
1239
+ "type": {
1240
+ "kind": "SCALAR",
1241
+ "name": "String",
1242
+ "ofType": null
1243
+ },
1244
+ "defaultValue": null
1245
+ },
1246
+ {
1247
+ "name": "addressLine2",
1248
+ "description": null,
1249
+ "type": {
1250
+ "kind": "SCALAR",
1251
+ "name": "String",
1252
+ "ofType": null
1253
+ },
1254
+ "defaultValue": null
1255
+ },
1256
+ {
1257
+ "name": "addressCity",
1258
+ "description": null,
1259
+ "type": {
1260
+ "kind": "SCALAR",
1261
+ "name": "String",
1262
+ "ofType": null
1263
+ },
1264
+ "defaultValue": null
1265
+ },
1266
+ {
1267
+ "name": "addressState",
1268
+ "description": null,
1269
+ "type": {
1270
+ "kind": "SCALAR",
1271
+ "name": "String",
1272
+ "ofType": null
1273
+ },
1274
+ "defaultValue": null
1275
+ },
1276
+ {
1277
+ "name": "addressPostalCode",
1278
+ "description": null,
1279
+ "type": {
1280
+ "kind": "SCALAR",
1281
+ "name": "String",
1282
+ "ofType": null
1283
+ },
1284
+ "defaultValue": null
1285
+ },
1286
+ {
1287
+ "name": "addressCountryCode",
1288
+ "description": null,
1289
+ "type": {
1290
+ "kind": "SCALAR",
1291
+ "name": "String",
1292
+ "ofType": null
1293
+ },
1294
+ "defaultValue": null
1295
+ },
1296
+ {
1297
+ "name": "phoneNumber",
1298
+ "description": null,
1299
+ "type": {
1300
+ "kind": "SCALAR",
1301
+ "name": "String",
1302
+ "ofType": null
1303
+ },
1304
+ "defaultValue": null
1305
+ }
1306
+ ],
1307
+ "interfaces": null,
1308
+ "enumValues": null,
1309
+ "possibleTypes": null
1310
+ },
1311
+ {
1312
+ "kind": "OBJECT",
1313
+ "name": "CustomerConnection",
1314
+ "description": "The connection type for Customer.",
1315
+ "fields": [
1316
+ {
1317
+ "name": "edges",
1318
+ "description": "A list of edges.",
1319
+ "args": [],
1320
+ "type": {
1321
+ "kind": "NON_NULL",
1322
+ "name": null,
1323
+ "ofType": {
1324
+ "kind": "LIST",
1325
+ "name": null,
1326
+ "ofType": {
1327
+ "kind": "NON_NULL",
1328
+ "name": null,
1329
+ "ofType": {
1330
+ "kind": "OBJECT",
1331
+ "name": "CustomerEdge",
1332
+ "ofType": null
1333
+ }
1334
+ }
1335
+ }
1336
+ },
1337
+ "isDeprecated": false,
1338
+ "deprecationReason": null
1339
+ },
1340
+ {
1341
+ "name": "nodes",
1342
+ "description": "A list of nodes.",
1343
+ "args": [],
1344
+ "type": {
1345
+ "kind": "NON_NULL",
1346
+ "name": null,
1347
+ "ofType": {
1348
+ "kind": "LIST",
1349
+ "name": null,
1350
+ "ofType": {
1351
+ "kind": "NON_NULL",
1352
+ "name": null,
1353
+ "ofType": {
1354
+ "kind": "OBJECT",
1355
+ "name": "Customer",
1356
+ "ofType": null
1357
+ }
1358
+ }
1359
+ }
1360
+ },
1361
+ "isDeprecated": false,
1362
+ "deprecationReason": null
1363
+ },
1364
+ {
1365
+ "name": "pageInfo",
1366
+ "description": "Information to aid in pagination.",
1367
+ "args": [],
1368
+ "type": {
1369
+ "kind": "NON_NULL",
1370
+ "name": null,
1371
+ "ofType": {
1372
+ "kind": "OBJECT",
1373
+ "name": "PageInfo",
1374
+ "ofType": null
1375
+ }
1376
+ },
1377
+ "isDeprecated": false,
1378
+ "deprecationReason": null
1379
+ },
1380
+ {
1381
+ "name": "totalCount",
1382
+ "description": null,
1383
+ "args": [],
1384
+ "type": {
1385
+ "kind": "NON_NULL",
1386
+ "name": null,
1387
+ "ofType": {
1388
+ "kind": "SCALAR",
1389
+ "name": "Int",
1390
+ "ofType": null
1391
+ }
1392
+ },
1393
+ "isDeprecated": false,
1394
+ "deprecationReason": null
1395
+ }
1396
+ ],
1397
+ "inputFields": null,
1398
+ "interfaces": [],
1399
+ "enumValues": null,
1400
+ "possibleTypes": null
1401
+ },
1402
+ {
1403
+ "kind": "OBJECT",
1404
+ "name": "CustomerEdge",
1405
+ "description": "An edge in a connection.",
1406
+ "fields": [
1407
+ {
1408
+ "name": "cursor",
1409
+ "description": "A cursor for use in pagination.",
1410
+ "args": [],
1411
+ "type": {
1412
+ "kind": "NON_NULL",
1413
+ "name": null,
1414
+ "ofType": {
1415
+ "kind": "SCALAR",
1416
+ "name": "String",
1417
+ "ofType": null
1418
+ }
1419
+ },
1420
+ "isDeprecated": false,
1421
+ "deprecationReason": null
1422
+ },
1423
+ {
1424
+ "name": "node",
1425
+ "description": "The item at the end of the edge.",
1426
+ "args": [],
1427
+ "type": {
1428
+ "kind": "OBJECT",
1429
+ "name": "Customer",
1430
+ "ofType": null
1431
+ },
1432
+ "isDeprecated": false,
1433
+ "deprecationReason": null
1434
+ }
1435
+ ],
1436
+ "inputFields": null,
1437
+ "interfaces": [],
1438
+ "enumValues": null,
1439
+ "possibleTypes": null
1440
+ },
1441
+ {
1442
+ "kind": "SCALAR",
1443
+ "name": "DateTime",
1444
+ "description": "Represents date/time in iso8601 format",
1445
+ "fields": null,
1446
+ "inputFields": null,
1447
+ "interfaces": null,
1448
+ "enumValues": null,
1449
+ "possibleTypes": null
1450
+ },
1451
+ {
1452
+ "kind": "SCALAR",
1453
+ "name": "ID",
1454
+ "description": "Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID.",
1455
+ "fields": null,
1456
+ "inputFields": null,
1457
+ "interfaces": null,
1458
+ "enumValues": null,
1459
+ "possibleTypes": null
1460
+ },
1461
+ {
1462
+ "kind": "OBJECT",
1463
+ "name": "Image",
1464
+ "description": null,
1465
+ "fields": [
1466
+ {
1467
+ "name": "grandeUrl",
1468
+ "description": null,
1469
+ "args": [],
1470
+ "type": {
1471
+ "kind": "NON_NULL",
1472
+ "name": null,
1473
+ "ofType": {
1474
+ "kind": "SCALAR",
1475
+ "name": "String",
1476
+ "ofType": null
1477
+ }
1478
+ },
1479
+ "isDeprecated": false,
1480
+ "deprecationReason": null
1481
+ },
1482
+ {
1483
+ "name": "iconUrl",
1484
+ "description": null,
1485
+ "args": [],
1486
+ "type": {
1487
+ "kind": "NON_NULL",
1488
+ "name": null,
1489
+ "ofType": {
1490
+ "kind": "SCALAR",
1491
+ "name": "String",
1492
+ "ofType": null
1493
+ }
1494
+ },
1495
+ "isDeprecated": false,
1496
+ "deprecationReason": null
1497
+ },
1498
+ {
1499
+ "name": "id",
1500
+ "description": null,
1501
+ "args": [],
1502
+ "type": {
1503
+ "kind": "SCALAR",
1504
+ "name": "ID",
1505
+ "ofType": null
1506
+ },
1507
+ "isDeprecated": false,
1508
+ "deprecationReason": null
1509
+ },
1510
+ {
1511
+ "name": "imageProcessed",
1512
+ "description": null,
1513
+ "args": [],
1514
+ "type": {
1515
+ "kind": "NON_NULL",
1516
+ "name": null,
1517
+ "ofType": {
1518
+ "kind": "SCALAR",
1519
+ "name": "Boolean",
1520
+ "ofType": null
1521
+ }
1522
+ },
1523
+ "isDeprecated": false,
1524
+ "deprecationReason": null
1525
+ },
1526
+ {
1527
+ "name": "largeUrl",
1528
+ "description": null,
1529
+ "args": [],
1530
+ "type": {
1531
+ "kind": "NON_NULL",
1532
+ "name": null,
1533
+ "ofType": {
1534
+ "kind": "SCALAR",
1535
+ "name": "String",
1536
+ "ofType": null
1537
+ }
1538
+ },
1539
+ "isDeprecated": false,
1540
+ "deprecationReason": null
1541
+ },
1542
+ {
1543
+ "name": "mediumUrl",
1544
+ "description": null,
1545
+ "args": [],
1546
+ "type": {
1547
+ "kind": "NON_NULL",
1548
+ "name": null,
1549
+ "ofType": {
1550
+ "kind": "SCALAR",
1551
+ "name": "String",
1552
+ "ofType": null
1553
+ }
1554
+ },
1555
+ "isDeprecated": false,
1556
+ "deprecationReason": null
1557
+ },
1558
+ {
1559
+ "name": "originalUrl",
1560
+ "description": null,
1561
+ "args": [],
1562
+ "type": {
1563
+ "kind": "NON_NULL",
1564
+ "name": null,
1565
+ "ofType": {
1566
+ "kind": "SCALAR",
1567
+ "name": "String",
1568
+ "ofType": null
1569
+ }
1570
+ },
1571
+ "isDeprecated": false,
1572
+ "deprecationReason": null
1573
+ },
1574
+ {
1575
+ "name": "smallUrl",
1576
+ "description": null,
1577
+ "args": [],
1578
+ "type": {
1579
+ "kind": "NON_NULL",
1580
+ "name": null,
1581
+ "ofType": {
1582
+ "kind": "SCALAR",
1583
+ "name": "String",
1584
+ "ofType": null
1585
+ }
1586
+ },
1587
+ "isDeprecated": false,
1588
+ "deprecationReason": null
1589
+ },
1590
+ {
1591
+ "name": "thumbnailUrl",
1592
+ "description": null,
1593
+ "args": [],
1594
+ "type": {
1595
+ "kind": "NON_NULL",
1596
+ "name": null,
1597
+ "ofType": {
1598
+ "kind": "SCALAR",
1599
+ "name": "String",
1600
+ "ofType": null
1601
+ }
1602
+ },
1603
+ "isDeprecated": false,
1604
+ "deprecationReason": null
1605
+ },
1606
+ {
1607
+ "name": "tinyUrl",
1608
+ "description": null,
1609
+ "args": [],
1610
+ "type": {
1611
+ "kind": "NON_NULL",
1612
+ "name": null,
1613
+ "ofType": {
1614
+ "kind": "SCALAR",
1615
+ "name": "String",
1616
+ "ofType": null
1617
+ }
1618
+ },
1619
+ "isDeprecated": false,
1620
+ "deprecationReason": null
1621
+ }
1622
+ ],
1623
+ "inputFields": null,
1624
+ "interfaces": [],
1625
+ "enumValues": null,
1626
+ "possibleTypes": null
1627
+ },
1628
+ {
1629
+ "kind": "SCALAR",
1630
+ "name": "Int",
1631
+ "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
1632
+ "fields": null,
1633
+ "inputFields": null,
1634
+ "interfaces": null,
1635
+ "enumValues": null,
1636
+ "possibleTypes": null
1637
+ },
1638
+ {
1639
+ "kind": "OBJECT",
1640
+ "name": "Item",
1641
+ "description": null,
1642
+ "fields": [
1643
+ {
1644
+ "name": "createdAt",
1645
+ "description": "The date the record was created",
1646
+ "args": [],
1647
+ "type": {
1648
+ "kind": "NON_NULL",
1649
+ "name": null,
1650
+ "ofType": {
1651
+ "kind": "SCALAR",
1652
+ "name": "DateTime",
1653
+ "ofType": null
1654
+ }
1655
+ },
1656
+ "isDeprecated": false,
1657
+ "deprecationReason": null
1658
+ },
1659
+ {
1660
+ "name": "duration",
1661
+ "description": "The length of time in months that an item's savings is good for",
1662
+ "args": [],
1663
+ "type": {
1664
+ "kind": "NON_NULL",
1665
+ "name": null,
1666
+ "ofType": {
1667
+ "kind": "SCALAR",
1668
+ "name": "Int",
1669
+ "ofType": null
1670
+ }
1671
+ },
1672
+ "isDeprecated": false,
1673
+ "deprecationReason": null
1674
+ },
1675
+ {
1676
+ "name": "name",
1677
+ "description": "Name of the good or service",
1678
+ "args": [],
1679
+ "type": {
1680
+ "kind": "NON_NULL",
1681
+ "name": null,
1682
+ "ofType": {
1683
+ "kind": "SCALAR",
1684
+ "name": "String",
1685
+ "ofType": null
1686
+ }
1687
+ },
1688
+ "isDeprecated": false,
1689
+ "deprecationReason": null
1690
+ },
1691
+ {
1692
+ "name": "postPrice",
1693
+ "description": "The post-negotiation price",
1694
+ "args": [],
1695
+ "type": {
1696
+ "kind": "NON_NULL",
1697
+ "name": null,
1698
+ "ofType": {
1699
+ "kind": "SCALAR",
1700
+ "name": "Money",
1701
+ "ofType": null
1702
+ }
1703
+ },
1704
+ "isDeprecated": false,
1705
+ "deprecationReason": null
1706
+ },
1707
+ {
1708
+ "name": "prePrice",
1709
+ "description": "The pre-negotiation price",
1710
+ "args": [],
1711
+ "type": {
1712
+ "kind": "NON_NULL",
1713
+ "name": null,
1714
+ "ofType": {
1715
+ "kind": "SCALAR",
1716
+ "name": "Money",
1717
+ "ofType": null
1718
+ }
1719
+ },
1720
+ "isDeprecated": false,
1721
+ "deprecationReason": null
1722
+ },
1723
+ {
1724
+ "name": "savings",
1725
+ "description": "The difference between the prePrice and the postPrice",
1726
+ "args": [],
1727
+ "type": {
1728
+ "kind": "NON_NULL",
1729
+ "name": null,
1730
+ "ofType": {
1731
+ "kind": "SCALAR",
1732
+ "name": "Money",
1733
+ "ofType": null
1734
+ }
1735
+ },
1736
+ "isDeprecated": false,
1737
+ "deprecationReason": null
1738
+ },
1739
+ {
1740
+ "name": "savingsEndOn",
1741
+ "description": "The date the discount/savings end",
1742
+ "args": [],
1743
+ "type": {
1744
+ "kind": "NON_NULL",
1745
+ "name": null,
1746
+ "ofType": {
1747
+ "kind": "SCALAR",
1748
+ "name": "DateTime",
1749
+ "ofType": null
1750
+ }
1751
+ },
1752
+ "isDeprecated": false,
1753
+ "deprecationReason": null
1754
+ },
1755
+ {
1756
+ "name": "savingsStartOn",
1757
+ "description": "The date the discount/savings start",
1758
+ "args": [],
1759
+ "type": {
1760
+ "kind": "NON_NULL",
1761
+ "name": null,
1762
+ "ofType": {
1763
+ "kind": "SCALAR",
1764
+ "name": "DateTime",
1765
+ "ofType": null
1766
+ }
1767
+ },
1768
+ "isDeprecated": false,
1769
+ "deprecationReason": null
1770
+ },
1771
+ {
1772
+ "name": "underContract",
1773
+ "description": "Indicates the item is under contract",
1774
+ "args": [],
1775
+ "type": {
1776
+ "kind": "NON_NULL",
1777
+ "name": null,
1778
+ "ofType": {
1779
+ "kind": "SCALAR",
1780
+ "name": "Boolean",
1781
+ "ofType": null
1782
+ }
1783
+ },
1784
+ "isDeprecated": false,
1785
+ "deprecationReason": null
1786
+ },
1787
+ {
1788
+ "name": "updatedAt",
1789
+ "description": "The last time the record was updated",
1790
+ "args": [],
1791
+ "type": {
1792
+ "kind": "NON_NULL",
1793
+ "name": null,
1794
+ "ofType": {
1795
+ "kind": "SCALAR",
1796
+ "name": "DateTime",
1797
+ "ofType": null
1798
+ }
1799
+ },
1800
+ "isDeprecated": false,
1801
+ "deprecationReason": null
1802
+ }
1803
+ ],
1804
+ "inputFields": null,
1805
+ "interfaces": [],
1806
+ "enumValues": null,
1807
+ "possibleTypes": null
1808
+ },
1809
+ {
1810
+ "kind": "SCALAR",
1811
+ "name": "Money",
1812
+ "description": "Represents money value",
1813
+ "fields": null,
1814
+ "inputFields": null,
1815
+ "interfaces": null,
1816
+ "enumValues": null,
1817
+ "possibleTypes": null
1818
+ },
1819
+ {
1820
+ "kind": "OBJECT",
1821
+ "name": "Mutation",
1822
+ "description": null,
1823
+ "fields": [
1824
+ {
1825
+ "name": "AcceptOffer",
1826
+ "description": "Accept an offer",
1827
+ "args": [
1828
+ {
1829
+ "name": "input",
1830
+ "description": null,
1831
+ "type": {
1832
+ "kind": "NON_NULL",
1833
+ "name": null,
1834
+ "ofType": {
1835
+ "kind": "INPUT_OBJECT",
1836
+ "name": "AcceptOfferInput",
1837
+ "ofType": null
1838
+ }
1839
+ },
1840
+ "defaultValue": null
1841
+ }
1842
+ ],
1843
+ "type": {
1844
+ "kind": "OBJECT",
1845
+ "name": "AcceptOfferPayload",
1846
+ "ofType": null
1847
+ },
1848
+ "isDeprecated": false,
1849
+ "deprecationReason": null
1850
+ },
1851
+ {
1852
+ "name": "CancelBill",
1853
+ "description": null,
1854
+ "args": [
1855
+ {
1856
+ "name": "input",
1857
+ "description": null,
1858
+ "type": {
1859
+ "kind": "NON_NULL",
1860
+ "name": null,
1861
+ "ofType": {
1862
+ "kind": "INPUT_OBJECT",
1863
+ "name": "CancelBillInput",
1864
+ "ofType": null
1865
+ }
1866
+ },
1867
+ "defaultValue": null
1868
+ }
1869
+ ],
1870
+ "type": {
1871
+ "kind": "OBJECT",
1872
+ "name": "CancelBillPayload",
1873
+ "ofType": null
1874
+ },
1875
+ "isDeprecated": false,
1876
+ "deprecationReason": null
1877
+ },
1878
+ {
1879
+ "name": "CreateBill",
1880
+ "description": null,
1881
+ "args": [
1882
+ {
1883
+ "name": "input",
1884
+ "description": null,
1885
+ "type": {
1886
+ "kind": "NON_NULL",
1887
+ "name": null,
1888
+ "ofType": {
1889
+ "kind": "INPUT_OBJECT",
1890
+ "name": "CreateBillInput",
1891
+ "ofType": null
1892
+ }
1893
+ },
1894
+ "defaultValue": null
1895
+ }
1896
+ ],
1897
+ "type": {
1898
+ "kind": "OBJECT",
1899
+ "name": "CreateBillPayload",
1900
+ "ofType": null
1901
+ },
1902
+ "isDeprecated": false,
1903
+ "deprecationReason": null
1904
+ },
1905
+ {
1906
+ "name": "CreateCustomer",
1907
+ "description": null,
1908
+ "args": [
1909
+ {
1910
+ "name": "input",
1911
+ "description": null,
1912
+ "type": {
1913
+ "kind": "NON_NULL",
1914
+ "name": null,
1915
+ "ofType": {
1916
+ "kind": "INPUT_OBJECT",
1917
+ "name": "CreateCustomerInput",
1918
+ "ofType": null
1919
+ }
1920
+ },
1921
+ "defaultValue": null
1922
+ }
1923
+ ],
1924
+ "type": {
1925
+ "kind": "OBJECT",
1926
+ "name": "CreateCustomerPayload",
1927
+ "ofType": null
1928
+ },
1929
+ "isDeprecated": false,
1930
+ "deprecationReason": null
1931
+ },
1932
+ {
1933
+ "name": "RejectOffer",
1934
+ "description": "Reject an offer",
1935
+ "args": [
1936
+ {
1937
+ "name": "input",
1938
+ "description": null,
1939
+ "type": {
1940
+ "kind": "NON_NULL",
1941
+ "name": null,
1942
+ "ofType": {
1943
+ "kind": "INPUT_OBJECT",
1944
+ "name": "RejectOfferInput",
1945
+ "ofType": null
1946
+ }
1947
+ },
1948
+ "defaultValue": null
1949
+ }
1950
+ ],
1951
+ "type": {
1952
+ "kind": "OBJECT",
1953
+ "name": "RejectOfferPayload",
1954
+ "ofType": null
1955
+ },
1956
+ "isDeprecated": false,
1957
+ "deprecationReason": null
1958
+ },
1959
+ {
1960
+ "name": "UpdateCustomer",
1961
+ "description": null,
1962
+ "args": [
1963
+ {
1964
+ "name": "input",
1965
+ "description": null,
1966
+ "type": {
1967
+ "kind": "NON_NULL",
1968
+ "name": null,
1969
+ "ofType": {
1970
+ "kind": "INPUT_OBJECT",
1971
+ "name": "UpdateCustomerInput",
1972
+ "ofType": null
1973
+ }
1974
+ },
1975
+ "defaultValue": null
1976
+ }
1977
+ ],
1978
+ "type": {
1979
+ "kind": "OBJECT",
1980
+ "name": "UpdateCustomerPayload",
1981
+ "ofType": null
1982
+ },
1983
+ "isDeprecated": false,
1984
+ "deprecationReason": null
1985
+ }
1986
+ ],
1987
+ "inputFields": null,
1988
+ "interfaces": [],
1989
+ "enumValues": null,
1990
+ "possibleTypes": null
1991
+ },
1992
+ {
1993
+ "kind": "OBJECT",
1994
+ "name": "Offer",
1995
+ "description": null,
1996
+ "fields": [
1997
+ {
1998
+ "name": "acceptedAt",
1999
+ "description": null,
2000
+ "args": [],
2001
+ "type": {
2002
+ "kind": "SCALAR",
2003
+ "name": "DateTime",
2004
+ "ofType": null
2005
+ },
2006
+ "isDeprecated": false,
2007
+ "deprecationReason": null
2008
+ },
2009
+ {
2010
+ "name": "bill",
2011
+ "description": null,
2012
+ "args": [],
2013
+ "type": {
2014
+ "kind": "NON_NULL",
2015
+ "name": null,
2016
+ "ofType": {
2017
+ "kind": "OBJECT",
2018
+ "name": "Bill",
2019
+ "ofType": null
2020
+ }
2021
+ },
2022
+ "isDeprecated": false,
2023
+ "deprecationReason": null
2024
+ },
2025
+ {
2026
+ "name": "content",
2027
+ "description": null,
2028
+ "args": [],
2029
+ "type": {
2030
+ "kind": "NON_NULL",
2031
+ "name": null,
2032
+ "ofType": {
2033
+ "kind": "SCALAR",
2034
+ "name": "String",
2035
+ "ofType": null
2036
+ }
2037
+ },
2038
+ "isDeprecated": false,
2039
+ "deprecationReason": null
2040
+ },
2041
+ {
2042
+ "name": "contentHtml",
2043
+ "description": null,
2044
+ "args": [],
2045
+ "type": {
2046
+ "kind": "NON_NULL",
2047
+ "name": null,
2048
+ "ofType": {
2049
+ "kind": "SCALAR",
2050
+ "name": "String",
2051
+ "ofType": null
2052
+ }
2053
+ },
2054
+ "isDeprecated": false,
2055
+ "deprecationReason": null
2056
+ },
2057
+ {
2058
+ "name": "createdAt",
2059
+ "description": null,
2060
+ "args": [],
2061
+ "type": {
2062
+ "kind": "NON_NULL",
2063
+ "name": null,
2064
+ "ofType": {
2065
+ "kind": "SCALAR",
2066
+ "name": "DateTime",
2067
+ "ofType": null
2068
+ }
2069
+ },
2070
+ "isDeprecated": false,
2071
+ "deprecationReason": null
2072
+ },
2073
+ {
2074
+ "name": "customer",
2075
+ "description": null,
2076
+ "args": [],
2077
+ "type": {
2078
+ "kind": "NON_NULL",
2079
+ "name": null,
2080
+ "ofType": {
2081
+ "kind": "OBJECT",
2082
+ "name": "Customer",
2083
+ "ofType": null
2084
+ }
2085
+ },
2086
+ "isDeprecated": false,
2087
+ "deprecationReason": null
2088
+ },
2089
+ {
2090
+ "name": "id",
2091
+ "description": "Alpha-numeric unique identifier",
2092
+ "args": [],
2093
+ "type": {
2094
+ "kind": "NON_NULL",
2095
+ "name": null,
2096
+ "ofType": {
2097
+ "kind": "SCALAR",
2098
+ "name": "String",
2099
+ "ofType": null
2100
+ }
2101
+ },
2102
+ "isDeprecated": false,
2103
+ "deprecationReason": null
2104
+ },
2105
+ {
2106
+ "name": "rejectedAt",
2107
+ "description": null,
2108
+ "args": [],
2109
+ "type": {
2110
+ "kind": "SCALAR",
2111
+ "name": "DateTime",
2112
+ "ofType": null
2113
+ },
2114
+ "isDeprecated": false,
2115
+ "deprecationReason": null
2116
+ },
2117
+ {
2118
+ "name": "status",
2119
+ "description": null,
2120
+ "args": [],
2121
+ "type": {
2122
+ "kind": "NON_NULL",
2123
+ "name": null,
2124
+ "ofType": {
2125
+ "kind": "SCALAR",
2126
+ "name": "String",
2127
+ "ofType": null
2128
+ }
2129
+ },
2130
+ "isDeprecated": false,
2131
+ "deprecationReason": null
2132
+ },
2133
+ {
2134
+ "name": "updatedAt",
2135
+ "description": null,
2136
+ "args": [],
2137
+ "type": {
2138
+ "kind": "NON_NULL",
2139
+ "name": null,
2140
+ "ofType": {
2141
+ "kind": "SCALAR",
2142
+ "name": "DateTime",
2143
+ "ofType": null
2144
+ }
2145
+ },
2146
+ "isDeprecated": false,
2147
+ "deprecationReason": null
2148
+ }
2149
+ ],
2150
+ "inputFields": null,
2151
+ "interfaces": [],
2152
+ "enumValues": null,
2153
+ "possibleTypes": null
2154
+ },
2155
+ {
2156
+ "kind": "OBJECT",
2157
+ "name": "OfferConnection",
2158
+ "description": "The connection type for Offer.",
2159
+ "fields": [
2160
+ {
2161
+ "name": "edges",
2162
+ "description": "A list of edges.",
2163
+ "args": [],
2164
+ "type": {
2165
+ "kind": "NON_NULL",
2166
+ "name": null,
2167
+ "ofType": {
2168
+ "kind": "LIST",
2169
+ "name": null,
2170
+ "ofType": {
2171
+ "kind": "NON_NULL",
2172
+ "name": null,
2173
+ "ofType": {
2174
+ "kind": "OBJECT",
2175
+ "name": "OfferEdge",
2176
+ "ofType": null
2177
+ }
2178
+ }
2179
+ }
2180
+ },
2181
+ "isDeprecated": false,
2182
+ "deprecationReason": null
2183
+ },
2184
+ {
2185
+ "name": "nodes",
2186
+ "description": "A list of nodes.",
2187
+ "args": [],
2188
+ "type": {
2189
+ "kind": "NON_NULL",
2190
+ "name": null,
2191
+ "ofType": {
2192
+ "kind": "LIST",
2193
+ "name": null,
2194
+ "ofType": {
2195
+ "kind": "NON_NULL",
2196
+ "name": null,
2197
+ "ofType": {
2198
+ "kind": "OBJECT",
2199
+ "name": "Offer",
2200
+ "ofType": null
2201
+ }
2202
+ }
2203
+ }
2204
+ },
2205
+ "isDeprecated": false,
2206
+ "deprecationReason": null
2207
+ },
2208
+ {
2209
+ "name": "pageInfo",
2210
+ "description": "Information to aid in pagination.",
2211
+ "args": [],
2212
+ "type": {
2213
+ "kind": "NON_NULL",
2214
+ "name": null,
2215
+ "ofType": {
2216
+ "kind": "OBJECT",
2217
+ "name": "PageInfo",
2218
+ "ofType": null
2219
+ }
2220
+ },
2221
+ "isDeprecated": false,
2222
+ "deprecationReason": null
2223
+ },
2224
+ {
2225
+ "name": "totalCount",
2226
+ "description": null,
2227
+ "args": [],
2228
+ "type": {
2229
+ "kind": "NON_NULL",
2230
+ "name": null,
2231
+ "ofType": {
2232
+ "kind": "SCALAR",
2233
+ "name": "Int",
2234
+ "ofType": null
2235
+ }
2236
+ },
2237
+ "isDeprecated": false,
2238
+ "deprecationReason": null
2239
+ }
2240
+ ],
2241
+ "inputFields": null,
2242
+ "interfaces": [],
2243
+ "enumValues": null,
2244
+ "possibleTypes": null
2245
+ },
2246
+ {
2247
+ "kind": "OBJECT",
2248
+ "name": "OfferEdge",
2249
+ "description": "An edge in a connection.",
2250
+ "fields": [
2251
+ {
2252
+ "name": "cursor",
2253
+ "description": "A cursor for use in pagination.",
2254
+ "args": [],
2255
+ "type": {
2256
+ "kind": "NON_NULL",
2257
+ "name": null,
2258
+ "ofType": {
2259
+ "kind": "SCALAR",
2260
+ "name": "String",
2261
+ "ofType": null
2262
+ }
2263
+ },
2264
+ "isDeprecated": false,
2265
+ "deprecationReason": null
2266
+ },
2267
+ {
2268
+ "name": "node",
2269
+ "description": "The item at the end of the edge.",
2270
+ "args": [],
2271
+ "type": {
2272
+ "kind": "OBJECT",
2273
+ "name": "Offer",
2274
+ "ofType": null
2275
+ },
2276
+ "isDeprecated": false,
2277
+ "deprecationReason": null
2278
+ }
2279
+ ],
2280
+ "inputFields": null,
2281
+ "interfaces": [],
2282
+ "enumValues": null,
2283
+ "possibleTypes": null
2284
+ },
2285
+ {
2286
+ "kind": "OBJECT",
2287
+ "name": "PageInfo",
2288
+ "description": "Information about pagination in a connection.",
2289
+ "fields": [
2290
+ {
2291
+ "name": "endCursor",
2292
+ "description": "When paginating forwards, the cursor to continue.",
2293
+ "args": [],
2294
+ "type": {
2295
+ "kind": "SCALAR",
2296
+ "name": "String",
2297
+ "ofType": null
2298
+ },
2299
+ "isDeprecated": false,
2300
+ "deprecationReason": null
2301
+ },
2302
+ {
2303
+ "name": "hasNextPage",
2304
+ "description": "When paginating forwards, are there more items?",
2305
+ "args": [],
2306
+ "type": {
2307
+ "kind": "NON_NULL",
2308
+ "name": null,
2309
+ "ofType": {
2310
+ "kind": "SCALAR",
2311
+ "name": "Boolean",
2312
+ "ofType": null
2313
+ }
2314
+ },
2315
+ "isDeprecated": false,
2316
+ "deprecationReason": null
2317
+ },
2318
+ {
2319
+ "name": "hasPreviousPage",
2320
+ "description": "When paginating backwards, are there more items?",
2321
+ "args": [],
2322
+ "type": {
2323
+ "kind": "NON_NULL",
2324
+ "name": null,
2325
+ "ofType": {
2326
+ "kind": "SCALAR",
2327
+ "name": "Boolean",
2328
+ "ofType": null
2329
+ }
2330
+ },
2331
+ "isDeprecated": false,
2332
+ "deprecationReason": null
2333
+ },
2334
+ {
2335
+ "name": "startCursor",
2336
+ "description": "When paginating backwards, the cursor to continue.",
2337
+ "args": [],
2338
+ "type": {
2339
+ "kind": "SCALAR",
2340
+ "name": "String",
2341
+ "ofType": null
2342
+ },
2343
+ "isDeprecated": false,
2344
+ "deprecationReason": null
2345
+ }
2346
+ ],
2347
+ "inputFields": null,
2348
+ "interfaces": [],
2349
+ "enumValues": null,
2350
+ "possibleTypes": null
2351
+ },
2352
+ {
2353
+ "kind": "OBJECT",
2354
+ "name": "Provider",
2355
+ "description": null,
2356
+ "fields": [
2357
+ {
2358
+ "name": "createdAt",
2359
+ "description": null,
2360
+ "args": [],
2361
+ "type": {
2362
+ "kind": "NON_NULL",
2363
+ "name": null,
2364
+ "ofType": {
2365
+ "kind": "SCALAR",
2366
+ "name": "DateTime",
2367
+ "ofType": null
2368
+ }
2369
+ },
2370
+ "isDeprecated": false,
2371
+ "deprecationReason": null
2372
+ },
2373
+ {
2374
+ "name": "id",
2375
+ "description": null,
2376
+ "args": [],
2377
+ "type": {
2378
+ "kind": "NON_NULL",
2379
+ "name": null,
2380
+ "ofType": {
2381
+ "kind": "SCALAR",
2382
+ "name": "ID",
2383
+ "ofType": null
2384
+ }
2385
+ },
2386
+ "isDeprecated": false,
2387
+ "deprecationReason": null
2388
+ },
2389
+ {
2390
+ "name": "logo",
2391
+ "description": null,
2392
+ "args": [],
2393
+ "type": {
2394
+ "kind": "OBJECT",
2395
+ "name": "Image",
2396
+ "ofType": null
2397
+ },
2398
+ "isDeprecated": false,
2399
+ "deprecationReason": null
2400
+ },
2401
+ {
2402
+ "name": "name",
2403
+ "description": null,
2404
+ "args": [],
2405
+ "type": {
2406
+ "kind": "NON_NULL",
2407
+ "name": null,
2408
+ "ofType": {
2409
+ "kind": "SCALAR",
2410
+ "name": "String",
2411
+ "ofType": null
2412
+ }
2413
+ },
2414
+ "isDeprecated": false,
2415
+ "deprecationReason": null
2416
+ },
2417
+ {
2418
+ "name": "services",
2419
+ "description": null,
2420
+ "args": [],
2421
+ "type": {
2422
+ "kind": "NON_NULL",
2423
+ "name": null,
2424
+ "ofType": {
2425
+ "kind": "LIST",
2426
+ "name": null,
2427
+ "ofType": {
2428
+ "kind": "NON_NULL",
2429
+ "name": null,
2430
+ "ofType": {
2431
+ "kind": "SCALAR",
2432
+ "name": "String",
2433
+ "ofType": null
2434
+ }
2435
+ }
2436
+ }
2437
+ },
2438
+ "isDeprecated": false,
2439
+ "deprecationReason": null
2440
+ },
2441
+ {
2442
+ "name": "updatedAt",
2443
+ "description": null,
2444
+ "args": [],
2445
+ "type": {
2446
+ "kind": "NON_NULL",
2447
+ "name": null,
2448
+ "ofType": {
2449
+ "kind": "SCALAR",
2450
+ "name": "DateTime",
2451
+ "ofType": null
2452
+ }
2453
+ },
2454
+ "isDeprecated": false,
2455
+ "deprecationReason": null
2456
+ }
2457
+ ],
2458
+ "inputFields": null,
2459
+ "interfaces": [],
2460
+ "enumValues": null,
2461
+ "possibleTypes": null
2462
+ },
2463
+ {
2464
+ "kind": "OBJECT",
2465
+ "name": "Query",
2466
+ "description": null,
2467
+ "fields": [
2468
+ {
2469
+ "name": "FindBill",
2470
+ "description": null,
2471
+ "args": [
2472
+ {
2473
+ "name": "id",
2474
+ "description": null,
2475
+ "type": {
2476
+ "kind": "NON_NULL",
2477
+ "name": null,
2478
+ "ofType": {
2479
+ "kind": "SCALAR",
2480
+ "name": "ID",
2481
+ "ofType": null
2482
+ }
2483
+ },
2484
+ "defaultValue": null
2485
+ }
2486
+ ],
2487
+ "type": {
2488
+ "kind": "OBJECT",
2489
+ "name": "Bill",
2490
+ "ofType": null
2491
+ },
2492
+ "isDeprecated": false,
2493
+ "deprecationReason": null
2494
+ },
2495
+ {
2496
+ "name": "FindCustomer",
2497
+ "description": null,
2498
+ "args": [
2499
+ {
2500
+ "name": "id",
2501
+ "description": null,
2502
+ "type": {
2503
+ "kind": "NON_NULL",
2504
+ "name": null,
2505
+ "ofType": {
2506
+ "kind": "SCALAR",
2507
+ "name": "ID",
2508
+ "ofType": null
2509
+ }
2510
+ },
2511
+ "defaultValue": null
2512
+ }
2513
+ ],
2514
+ "type": {
2515
+ "kind": "OBJECT",
2516
+ "name": "Customer",
2517
+ "ofType": null
2518
+ },
2519
+ "isDeprecated": false,
2520
+ "deprecationReason": null
2521
+ },
2522
+ {
2523
+ "name": "FindProvider",
2524
+ "description": null,
2525
+ "args": [
2526
+ {
2527
+ "name": "id",
2528
+ "description": null,
2529
+ "type": {
2530
+ "kind": "NON_NULL",
2531
+ "name": null,
2532
+ "ofType": {
2533
+ "kind": "SCALAR",
2534
+ "name": "ID",
2535
+ "ofType": null
2536
+ }
2537
+ },
2538
+ "defaultValue": null
2539
+ }
2540
+ ],
2541
+ "type": {
2542
+ "kind": "OBJECT",
2543
+ "name": "Provider",
2544
+ "ofType": null
2545
+ },
2546
+ "isDeprecated": false,
2547
+ "deprecationReason": null
2548
+ },
2549
+ {
2550
+ "name": "ListBills",
2551
+ "description": null,
2552
+ "args": [
2553
+ {
2554
+ "name": "sortBy",
2555
+ "description": null,
2556
+ "type": {
2557
+ "kind": "SCALAR",
2558
+ "name": "String",
2559
+ "ofType": null
2560
+ },
2561
+ "defaultValue": "\"created_at\""
2562
+ },
2563
+ {
2564
+ "name": "sortDirection",
2565
+ "description": null,
2566
+ "type": {
2567
+ "kind": "SCALAR",
2568
+ "name": "String",
2569
+ "ofType": null
2570
+ },
2571
+ "defaultValue": "\"desc\""
2572
+ },
2573
+ {
2574
+ "name": "limit",
2575
+ "description": null,
2576
+ "type": {
2577
+ "kind": "SCALAR",
2578
+ "name": "Int",
2579
+ "ofType": null
2580
+ },
2581
+ "defaultValue": "25"
2582
+ },
2583
+ {
2584
+ "name": "offset",
2585
+ "description": null,
2586
+ "type": {
2587
+ "kind": "SCALAR",
2588
+ "name": "Int",
2589
+ "ofType": null
2590
+ },
2591
+ "defaultValue": "0"
2592
+ },
2593
+ {
2594
+ "name": "customerId",
2595
+ "description": null,
2596
+ "type": {
2597
+ "kind": "SCALAR",
2598
+ "name": "ID",
2599
+ "ofType": null
2600
+ },
2601
+ "defaultValue": null
2602
+ },
2603
+ {
2604
+ "name": "after",
2605
+ "description": "Returns the elements in the list that come after the specified cursor.",
2606
+ "type": {
2607
+ "kind": "SCALAR",
2608
+ "name": "String",
2609
+ "ofType": null
2610
+ },
2611
+ "defaultValue": null
2612
+ },
2613
+ {
2614
+ "name": "before",
2615
+ "description": "Returns the elements in the list that come before the specified cursor.",
2616
+ "type": {
2617
+ "kind": "SCALAR",
2618
+ "name": "String",
2619
+ "ofType": null
2620
+ },
2621
+ "defaultValue": null
2622
+ },
2623
+ {
2624
+ "name": "first",
2625
+ "description": "Returns the first _n_ elements from the list.",
2626
+ "type": {
2627
+ "kind": "SCALAR",
2628
+ "name": "Int",
2629
+ "ofType": null
2630
+ },
2631
+ "defaultValue": null
2632
+ },
2633
+ {
2634
+ "name": "last",
2635
+ "description": "Returns the last _n_ elements from the list.",
2636
+ "type": {
2637
+ "kind": "SCALAR",
2638
+ "name": "Int",
2639
+ "ofType": null
2640
+ },
2641
+ "defaultValue": null
2642
+ }
2643
+ ],
2644
+ "type": {
2645
+ "kind": "NON_NULL",
2646
+ "name": null,
2647
+ "ofType": {
2648
+ "kind": "OBJECT",
2649
+ "name": "BillConnection",
2650
+ "ofType": null
2651
+ }
2652
+ },
2653
+ "isDeprecated": false,
2654
+ "deprecationReason": null
2655
+ },
2656
+ {
2657
+ "name": "ListCustomers",
2658
+ "description": null,
2659
+ "args": [
2660
+ {
2661
+ "name": "sortBy",
2662
+ "description": null,
2663
+ "type": {
2664
+ "kind": "SCALAR",
2665
+ "name": "String",
2666
+ "ofType": null
2667
+ },
2668
+ "defaultValue": null
2669
+ },
2670
+ {
2671
+ "name": "sortDirection",
2672
+ "description": null,
2673
+ "type": {
2674
+ "kind": "SCALAR",
2675
+ "name": "String",
2676
+ "ofType": null
2677
+ },
2678
+ "defaultValue": null
2679
+ },
2680
+ {
2681
+ "name": "limit",
2682
+ "description": null,
2683
+ "type": {
2684
+ "kind": "SCALAR",
2685
+ "name": "Int",
2686
+ "ofType": null
2687
+ },
2688
+ "defaultValue": null
2689
+ },
2690
+ {
2691
+ "name": "offset",
2692
+ "description": null,
2693
+ "type": {
2694
+ "kind": "SCALAR",
2695
+ "name": "Int",
2696
+ "ofType": null
2697
+ },
2698
+ "defaultValue": null
2699
+ },
2700
+ {
2701
+ "name": "after",
2702
+ "description": "Returns the elements in the list that come after the specified cursor.",
2703
+ "type": {
2704
+ "kind": "SCALAR",
2705
+ "name": "String",
2706
+ "ofType": null
2707
+ },
2708
+ "defaultValue": null
2709
+ },
2710
+ {
2711
+ "name": "before",
2712
+ "description": "Returns the elements in the list that come before the specified cursor.",
2713
+ "type": {
2714
+ "kind": "SCALAR",
2715
+ "name": "String",
2716
+ "ofType": null
2717
+ },
2718
+ "defaultValue": null
2719
+ },
2720
+ {
2721
+ "name": "first",
2722
+ "description": "Returns the first _n_ elements from the list.",
2723
+ "type": {
2724
+ "kind": "SCALAR",
2725
+ "name": "Int",
2726
+ "ofType": null
2727
+ },
2728
+ "defaultValue": null
2729
+ },
2730
+ {
2731
+ "name": "last",
2732
+ "description": "Returns the last _n_ elements from the list.",
2733
+ "type": {
2734
+ "kind": "SCALAR",
2735
+ "name": "Int",
2736
+ "ofType": null
2737
+ },
2738
+ "defaultValue": null
2739
+ }
2740
+ ],
2741
+ "type": {
2742
+ "kind": "NON_NULL",
2743
+ "name": null,
2744
+ "ofType": {
2745
+ "kind": "OBJECT",
2746
+ "name": "CustomerConnection",
2747
+ "ofType": null
2748
+ }
2749
+ },
2750
+ "isDeprecated": false,
2751
+ "deprecationReason": null
2752
+ },
2753
+ {
2754
+ "name": "ListOffers",
2755
+ "description": null,
2756
+ "args": [
2757
+ {
2758
+ "name": "status",
2759
+ "description": null,
2760
+ "type": {
2761
+ "kind": "SCALAR",
2762
+ "name": "String",
2763
+ "ofType": null
2764
+ },
2765
+ "defaultValue": null
2766
+ },
2767
+ {
2768
+ "name": "customerId",
2769
+ "description": null,
2770
+ "type": {
2771
+ "kind": "SCALAR",
2772
+ "name": "ID",
2773
+ "ofType": null
2774
+ },
2775
+ "defaultValue": null
2776
+ },
2777
+ {
2778
+ "name": "billId",
2779
+ "description": null,
2780
+ "type": {
2781
+ "kind": "SCALAR",
2782
+ "name": "ID",
2783
+ "ofType": null
2784
+ },
2785
+ "defaultValue": null
2786
+ },
2787
+ {
2788
+ "name": "limit",
2789
+ "description": null,
2790
+ "type": {
2791
+ "kind": "SCALAR",
2792
+ "name": "Int",
2793
+ "ofType": null
2794
+ },
2795
+ "defaultValue": "25"
2796
+ },
2797
+ {
2798
+ "name": "offset",
2799
+ "description": null,
2800
+ "type": {
2801
+ "kind": "SCALAR",
2802
+ "name": "Int",
2803
+ "ofType": null
2804
+ },
2805
+ "defaultValue": "0"
2806
+ },
2807
+ {
2808
+ "name": "after",
2809
+ "description": "Returns the elements in the list that come after the specified cursor.",
2810
+ "type": {
2811
+ "kind": "SCALAR",
2812
+ "name": "String",
2813
+ "ofType": null
2814
+ },
2815
+ "defaultValue": null
2816
+ },
2817
+ {
2818
+ "name": "before",
2819
+ "description": "Returns the elements in the list that come before the specified cursor.",
2820
+ "type": {
2821
+ "kind": "SCALAR",
2822
+ "name": "String",
2823
+ "ofType": null
2824
+ },
2825
+ "defaultValue": null
2826
+ },
2827
+ {
2828
+ "name": "first",
2829
+ "description": "Returns the first _n_ elements from the list.",
2830
+ "type": {
2831
+ "kind": "SCALAR",
2832
+ "name": "Int",
2833
+ "ofType": null
2834
+ },
2835
+ "defaultValue": null
2836
+ },
2837
+ {
2838
+ "name": "last",
2839
+ "description": "Returns the last _n_ elements from the list.",
2840
+ "type": {
2841
+ "kind": "SCALAR",
2842
+ "name": "Int",
2843
+ "ofType": null
2844
+ },
2845
+ "defaultValue": null
2846
+ }
2847
+ ],
2848
+ "type": {
2849
+ "kind": "NON_NULL",
2850
+ "name": null,
2851
+ "ofType": {
2852
+ "kind": "OBJECT",
2853
+ "name": "OfferConnection",
2854
+ "ofType": null
2855
+ }
2856
+ },
2857
+ "isDeprecated": false,
2858
+ "deprecationReason": null
2859
+ },
2860
+ {
2861
+ "name": "ListProviders",
2862
+ "description": null,
2863
+ "args": [],
2864
+ "type": {
2865
+ "kind": "NON_NULL",
2866
+ "name": null,
2867
+ "ofType": {
2868
+ "kind": "LIST",
2869
+ "name": null,
2870
+ "ofType": {
2871
+ "kind": "NON_NULL",
2872
+ "name": null,
2873
+ "ofType": {
2874
+ "kind": "OBJECT",
2875
+ "name": "Provider",
2876
+ "ofType": null
2877
+ }
2878
+ }
2879
+ }
2880
+ },
2881
+ "isDeprecated": false,
2882
+ "deprecationReason": null
2883
+ }
2884
+ ],
2885
+ "inputFields": null,
2886
+ "interfaces": [],
2887
+ "enumValues": null,
2888
+ "possibleTypes": null
2889
+ },
2890
+ {
2891
+ "kind": "INPUT_OBJECT",
2892
+ "name": "RejectOfferInput",
2893
+ "description": "Autogenerated input type of RejectOffer",
2894
+ "fields": null,
2895
+ "inputFields": [
2896
+ {
2897
+ "name": "id",
2898
+ "description": null,
2899
+ "type": {
2900
+ "kind": "NON_NULL",
2901
+ "name": null,
2902
+ "ofType": {
2903
+ "kind": "SCALAR",
2904
+ "name": "ID",
2905
+ "ofType": null
2906
+ }
2907
+ },
2908
+ "defaultValue": null
2909
+ },
2910
+ {
2911
+ "name": "clientMutationId",
2912
+ "description": "A unique identifier for the client performing the mutation.",
2913
+ "type": {
2914
+ "kind": "SCALAR",
2915
+ "name": "String",
2916
+ "ofType": null
2917
+ },
2918
+ "defaultValue": null
2919
+ }
2920
+ ],
2921
+ "interfaces": null,
2922
+ "enumValues": null,
2923
+ "possibleTypes": null
2924
+ },
2925
+ {
2926
+ "kind": "OBJECT",
2927
+ "name": "RejectOfferPayload",
2928
+ "description": "Autogenerated return type of RejectOffer",
2929
+ "fields": [
2930
+ {
2931
+ "name": "clientMutationId",
2932
+ "description": "A unique identifier for the client performing the mutation.",
2933
+ "args": [],
2934
+ "type": {
2935
+ "kind": "SCALAR",
2936
+ "name": "String",
2937
+ "ofType": null
2938
+ },
2939
+ "isDeprecated": false,
2940
+ "deprecationReason": null
2941
+ },
2942
+ {
2943
+ "name": "errors",
2944
+ "description": null,
2945
+ "args": [],
2946
+ "type": {
2947
+ "kind": "NON_NULL",
2948
+ "name": null,
2949
+ "ofType": {
2950
+ "kind": "LIST",
2951
+ "name": null,
2952
+ "ofType": {
2953
+ "kind": "NON_NULL",
2954
+ "name": null,
2955
+ "ofType": {
2956
+ "kind": "SCALAR",
2957
+ "name": "String",
2958
+ "ofType": null
2959
+ }
2960
+ }
2961
+ }
2962
+ },
2963
+ "isDeprecated": false,
2964
+ "deprecationReason": null
2965
+ },
2966
+ {
2967
+ "name": "offer",
2968
+ "description": null,
2969
+ "args": [],
2970
+ "type": {
2971
+ "kind": "OBJECT",
2972
+ "name": "Offer",
2973
+ "ofType": null
2974
+ },
2975
+ "isDeprecated": false,
2976
+ "deprecationReason": null
2977
+ },
2978
+ {
2979
+ "name": "success",
2980
+ "description": null,
2981
+ "args": [],
2982
+ "type": {
2983
+ "kind": "NON_NULL",
2984
+ "name": null,
2985
+ "ofType": {
2986
+ "kind": "SCALAR",
2987
+ "name": "Boolean",
2988
+ "ofType": null
2989
+ }
2990
+ },
2991
+ "isDeprecated": false,
2992
+ "deprecationReason": null
2993
+ }
2994
+ ],
2995
+ "inputFields": null,
2996
+ "interfaces": [],
2997
+ "enumValues": null,
2998
+ "possibleTypes": null
2999
+ },
3000
+ {
3001
+ "kind": "SCALAR",
3002
+ "name": "String",
3003
+ "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.",
3004
+ "fields": null,
3005
+ "inputFields": null,
3006
+ "interfaces": null,
3007
+ "enumValues": null,
3008
+ "possibleTypes": null
3009
+ },
3010
+ {
3011
+ "kind": "INPUT_OBJECT",
3012
+ "name": "UpdateCustomerInput",
3013
+ "description": "Autogenerated input type of UpdateCustomer",
3014
+ "fields": null,
3015
+ "inputFields": [
3016
+ {
3017
+ "name": "id",
3018
+ "description": null,
3019
+ "type": {
3020
+ "kind": "NON_NULL",
3021
+ "name": null,
3022
+ "ofType": {
3023
+ "kind": "SCALAR",
3024
+ "name": "ID",
3025
+ "ofType": null
3026
+ }
3027
+ },
3028
+ "defaultValue": null
3029
+ },
3030
+ {
3031
+ "name": "customer",
3032
+ "description": null,
3033
+ "type": {
3034
+ "kind": "NON_NULL",
3035
+ "name": null,
3036
+ "ofType": {
3037
+ "kind": "INPUT_OBJECT",
3038
+ "name": "CustomerAttributes",
3039
+ "ofType": null
3040
+ }
3041
+ },
3042
+ "defaultValue": null
3043
+ },
3044
+ {
3045
+ "name": "clientMutationId",
3046
+ "description": "A unique identifier for the client performing the mutation.",
3047
+ "type": {
3048
+ "kind": "SCALAR",
3049
+ "name": "String",
3050
+ "ofType": null
3051
+ },
3052
+ "defaultValue": null
3053
+ }
3054
+ ],
3055
+ "interfaces": null,
3056
+ "enumValues": null,
3057
+ "possibleTypes": null
3058
+ },
3059
+ {
3060
+ "kind": "OBJECT",
3061
+ "name": "UpdateCustomerPayload",
3062
+ "description": "Autogenerated return type of UpdateCustomer",
3063
+ "fields": [
3064
+ {
3065
+ "name": "clientMutationId",
3066
+ "description": "A unique identifier for the client performing the mutation.",
3067
+ "args": [],
3068
+ "type": {
3069
+ "kind": "SCALAR",
3070
+ "name": "String",
3071
+ "ofType": null
3072
+ },
3073
+ "isDeprecated": false,
3074
+ "deprecationReason": null
3075
+ },
3076
+ {
3077
+ "name": "customer",
3078
+ "description": null,
3079
+ "args": [],
3080
+ "type": {
3081
+ "kind": "OBJECT",
3082
+ "name": "Customer",
3083
+ "ofType": null
3084
+ },
3085
+ "isDeprecated": false,
3086
+ "deprecationReason": null
3087
+ },
3088
+ {
3089
+ "name": "errors",
3090
+ "description": null,
3091
+ "args": [],
3092
+ "type": {
3093
+ "kind": "NON_NULL",
3094
+ "name": null,
3095
+ "ofType": {
3096
+ "kind": "LIST",
3097
+ "name": null,
3098
+ "ofType": {
3099
+ "kind": "NON_NULL",
3100
+ "name": null,
3101
+ "ofType": {
3102
+ "kind": "SCALAR",
3103
+ "name": "String",
3104
+ "ofType": null
3105
+ }
3106
+ }
3107
+ }
3108
+ },
3109
+ "isDeprecated": false,
3110
+ "deprecationReason": null
3111
+ },
3112
+ {
3113
+ "name": "success",
3114
+ "description": null,
3115
+ "args": [],
3116
+ "type": {
3117
+ "kind": "NON_NULL",
3118
+ "name": null,
3119
+ "ofType": {
3120
+ "kind": "SCALAR",
3121
+ "name": "Boolean",
3122
+ "ofType": null
3123
+ }
3124
+ },
3125
+ "isDeprecated": false,
3126
+ "deprecationReason": null
3127
+ }
3128
+ ],
3129
+ "inputFields": null,
3130
+ "interfaces": [],
3131
+ "enumValues": null,
3132
+ "possibleTypes": null
3133
+ },
3134
+ {
3135
+ "kind": "OBJECT",
3136
+ "name": "__Directive",
3137
+ "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
3138
+ "fields": [
3139
+ {
3140
+ "name": "args",
3141
+ "description": null,
3142
+ "args": [],
3143
+ "type": {
3144
+ "kind": "NON_NULL",
3145
+ "name": null,
3146
+ "ofType": {
3147
+ "kind": "LIST",
3148
+ "name": null,
3149
+ "ofType": {
3150
+ "kind": "NON_NULL",
3151
+ "name": null,
3152
+ "ofType": {
3153
+ "kind": "OBJECT",
3154
+ "name": "__InputValue",
3155
+ "ofType": null
3156
+ }
3157
+ }
3158
+ }
3159
+ },
3160
+ "isDeprecated": false,
3161
+ "deprecationReason": null
3162
+ },
3163
+ {
3164
+ "name": "description",
3165
+ "description": null,
3166
+ "args": [],
3167
+ "type": {
3168
+ "kind": "SCALAR",
3169
+ "name": "String",
3170
+ "ofType": null
3171
+ },
3172
+ "isDeprecated": false,
3173
+ "deprecationReason": null
3174
+ },
3175
+ {
3176
+ "name": "locations",
3177
+ "description": null,
3178
+ "args": [],
3179
+ "type": {
3180
+ "kind": "NON_NULL",
3181
+ "name": null,
3182
+ "ofType": {
3183
+ "kind": "LIST",
3184
+ "name": null,
3185
+ "ofType": {
3186
+ "kind": "NON_NULL",
3187
+ "name": null,
3188
+ "ofType": {
3189
+ "kind": "ENUM",
3190
+ "name": "__DirectiveLocation",
3191
+ "ofType": null
3192
+ }
3193
+ }
3194
+ }
3195
+ },
3196
+ "isDeprecated": false,
3197
+ "deprecationReason": null
3198
+ },
3199
+ {
3200
+ "name": "name",
3201
+ "description": null,
3202
+ "args": [],
3203
+ "type": {
3204
+ "kind": "NON_NULL",
3205
+ "name": null,
3206
+ "ofType": {
3207
+ "kind": "SCALAR",
3208
+ "name": "String",
3209
+ "ofType": null
3210
+ }
3211
+ },
3212
+ "isDeprecated": false,
3213
+ "deprecationReason": null
3214
+ },
3215
+ {
3216
+ "name": "onField",
3217
+ "description": null,
3218
+ "args": [],
3219
+ "type": {
3220
+ "kind": "NON_NULL",
3221
+ "name": null,
3222
+ "ofType": {
3223
+ "kind": "SCALAR",
3224
+ "name": "Boolean",
3225
+ "ofType": null
3226
+ }
3227
+ },
3228
+ "isDeprecated": true,
3229
+ "deprecationReason": "Use `locations`."
3230
+ },
3231
+ {
3232
+ "name": "onFragment",
3233
+ "description": null,
3234
+ "args": [],
3235
+ "type": {
3236
+ "kind": "NON_NULL",
3237
+ "name": null,
3238
+ "ofType": {
3239
+ "kind": "SCALAR",
3240
+ "name": "Boolean",
3241
+ "ofType": null
3242
+ }
3243
+ },
3244
+ "isDeprecated": true,
3245
+ "deprecationReason": "Use `locations`."
3246
+ },
3247
+ {
3248
+ "name": "onOperation",
3249
+ "description": null,
3250
+ "args": [],
3251
+ "type": {
3252
+ "kind": "NON_NULL",
3253
+ "name": null,
3254
+ "ofType": {
3255
+ "kind": "SCALAR",
3256
+ "name": "Boolean",
3257
+ "ofType": null
3258
+ }
3259
+ },
3260
+ "isDeprecated": true,
3261
+ "deprecationReason": "Use `locations`."
3262
+ }
3263
+ ],
3264
+ "inputFields": null,
3265
+ "interfaces": [],
3266
+ "enumValues": null,
3267
+ "possibleTypes": null
3268
+ },
3269
+ {
3270
+ "kind": "ENUM",
3271
+ "name": "__DirectiveLocation",
3272
+ "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
3273
+ "fields": null,
3274
+ "inputFields": null,
3275
+ "interfaces": null,
3276
+ "enumValues": [
3277
+ {
3278
+ "name": "QUERY",
3279
+ "description": "Location adjacent to a query operation.",
3280
+ "isDeprecated": false,
3281
+ "deprecationReason": null
3282
+ },
3283
+ {
3284
+ "name": "MUTATION",
3285
+ "description": "Location adjacent to a mutation operation.",
3286
+ "isDeprecated": false,
3287
+ "deprecationReason": null
3288
+ },
3289
+ {
3290
+ "name": "SUBSCRIPTION",
3291
+ "description": "Location adjacent to a subscription operation.",
3292
+ "isDeprecated": false,
3293
+ "deprecationReason": null
3294
+ },
3295
+ {
3296
+ "name": "FIELD",
3297
+ "description": "Location adjacent to a field.",
3298
+ "isDeprecated": false,
3299
+ "deprecationReason": null
3300
+ },
3301
+ {
3302
+ "name": "FRAGMENT_DEFINITION",
3303
+ "description": "Location adjacent to a fragment definition.",
3304
+ "isDeprecated": false,
3305
+ "deprecationReason": null
3306
+ },
3307
+ {
3308
+ "name": "FRAGMENT_SPREAD",
3309
+ "description": "Location adjacent to a fragment spread.",
3310
+ "isDeprecated": false,
3311
+ "deprecationReason": null
3312
+ },
3313
+ {
3314
+ "name": "INLINE_FRAGMENT",
3315
+ "description": "Location adjacent to an inline fragment.",
3316
+ "isDeprecated": false,
3317
+ "deprecationReason": null
3318
+ },
3319
+ {
3320
+ "name": "SCHEMA",
3321
+ "description": "Location adjacent to a schema definition.",
3322
+ "isDeprecated": false,
3323
+ "deprecationReason": null
3324
+ },
3325
+ {
3326
+ "name": "SCALAR",
3327
+ "description": "Location adjacent to a scalar definition.",
3328
+ "isDeprecated": false,
3329
+ "deprecationReason": null
3330
+ },
3331
+ {
3332
+ "name": "OBJECT",
3333
+ "description": "Location adjacent to an object type definition.",
3334
+ "isDeprecated": false,
3335
+ "deprecationReason": null
3336
+ },
3337
+ {
3338
+ "name": "FIELD_DEFINITION",
3339
+ "description": "Location adjacent to a field definition.",
3340
+ "isDeprecated": false,
3341
+ "deprecationReason": null
3342
+ },
3343
+ {
3344
+ "name": "ARGUMENT_DEFINITION",
3345
+ "description": "Location adjacent to an argument definition.",
3346
+ "isDeprecated": false,
3347
+ "deprecationReason": null
3348
+ },
3349
+ {
3350
+ "name": "INTERFACE",
3351
+ "description": "Location adjacent to an interface definition.",
3352
+ "isDeprecated": false,
3353
+ "deprecationReason": null
3354
+ },
3355
+ {
3356
+ "name": "UNION",
3357
+ "description": "Location adjacent to a union definition.",
3358
+ "isDeprecated": false,
3359
+ "deprecationReason": null
3360
+ },
3361
+ {
3362
+ "name": "ENUM",
3363
+ "description": "Location adjacent to an enum definition.",
3364
+ "isDeprecated": false,
3365
+ "deprecationReason": null
3366
+ },
3367
+ {
3368
+ "name": "ENUM_VALUE",
3369
+ "description": "Location adjacent to an enum value definition.",
3370
+ "isDeprecated": false,
3371
+ "deprecationReason": null
3372
+ },
3373
+ {
3374
+ "name": "INPUT_OBJECT",
3375
+ "description": "Location adjacent to an input object type definition.",
3376
+ "isDeprecated": false,
3377
+ "deprecationReason": null
3378
+ },
3379
+ {
3380
+ "name": "INPUT_FIELD_DEFINITION",
3381
+ "description": "Location adjacent to an input object field definition.",
3382
+ "isDeprecated": false,
3383
+ "deprecationReason": null
3384
+ }
3385
+ ],
3386
+ "possibleTypes": null
3387
+ },
3388
+ {
3389
+ "kind": "OBJECT",
3390
+ "name": "__EnumValue",
3391
+ "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
3392
+ "fields": [
3393
+ {
3394
+ "name": "deprecationReason",
3395
+ "description": null,
3396
+ "args": [],
3397
+ "type": {
3398
+ "kind": "SCALAR",
3399
+ "name": "String",
3400
+ "ofType": null
3401
+ },
3402
+ "isDeprecated": false,
3403
+ "deprecationReason": null
3404
+ },
3405
+ {
3406
+ "name": "description",
3407
+ "description": null,
3408
+ "args": [],
3409
+ "type": {
3410
+ "kind": "SCALAR",
3411
+ "name": "String",
3412
+ "ofType": null
3413
+ },
3414
+ "isDeprecated": false,
3415
+ "deprecationReason": null
3416
+ },
3417
+ {
3418
+ "name": "isDeprecated",
3419
+ "description": null,
3420
+ "args": [],
3421
+ "type": {
3422
+ "kind": "NON_NULL",
3423
+ "name": null,
3424
+ "ofType": {
3425
+ "kind": "SCALAR",
3426
+ "name": "Boolean",
3427
+ "ofType": null
3428
+ }
3429
+ },
3430
+ "isDeprecated": false,
3431
+ "deprecationReason": null
3432
+ },
3433
+ {
3434
+ "name": "name",
3435
+ "description": null,
3436
+ "args": [],
3437
+ "type": {
3438
+ "kind": "NON_NULL",
3439
+ "name": null,
3440
+ "ofType": {
3441
+ "kind": "SCALAR",
3442
+ "name": "String",
3443
+ "ofType": null
3444
+ }
3445
+ },
3446
+ "isDeprecated": false,
3447
+ "deprecationReason": null
3448
+ }
3449
+ ],
3450
+ "inputFields": null,
3451
+ "interfaces": [],
3452
+ "enumValues": null,
3453
+ "possibleTypes": null
3454
+ },
3455
+ {
3456
+ "kind": "OBJECT",
3457
+ "name": "__Field",
3458
+ "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
3459
+ "fields": [
3460
+ {
3461
+ "name": "args",
3462
+ "description": null,
3463
+ "args": [],
3464
+ "type": {
3465
+ "kind": "NON_NULL",
3466
+ "name": null,
3467
+ "ofType": {
3468
+ "kind": "LIST",
3469
+ "name": null,
3470
+ "ofType": {
3471
+ "kind": "NON_NULL",
3472
+ "name": null,
3473
+ "ofType": {
3474
+ "kind": "OBJECT",
3475
+ "name": "__InputValue",
3476
+ "ofType": null
3477
+ }
3478
+ }
3479
+ }
3480
+ },
3481
+ "isDeprecated": false,
3482
+ "deprecationReason": null
3483
+ },
3484
+ {
3485
+ "name": "deprecationReason",
3486
+ "description": null,
3487
+ "args": [],
3488
+ "type": {
3489
+ "kind": "SCALAR",
3490
+ "name": "String",
3491
+ "ofType": null
3492
+ },
3493
+ "isDeprecated": false,
3494
+ "deprecationReason": null
3495
+ },
3496
+ {
3497
+ "name": "description",
3498
+ "description": null,
3499
+ "args": [],
3500
+ "type": {
3501
+ "kind": "SCALAR",
3502
+ "name": "String",
3503
+ "ofType": null
3504
+ },
3505
+ "isDeprecated": false,
3506
+ "deprecationReason": null
3507
+ },
3508
+ {
3509
+ "name": "isDeprecated",
3510
+ "description": null,
3511
+ "args": [],
3512
+ "type": {
3513
+ "kind": "NON_NULL",
3514
+ "name": null,
3515
+ "ofType": {
3516
+ "kind": "SCALAR",
3517
+ "name": "Boolean",
3518
+ "ofType": null
3519
+ }
3520
+ },
3521
+ "isDeprecated": false,
3522
+ "deprecationReason": null
3523
+ },
3524
+ {
3525
+ "name": "name",
3526
+ "description": null,
3527
+ "args": [],
3528
+ "type": {
3529
+ "kind": "NON_NULL",
3530
+ "name": null,
3531
+ "ofType": {
3532
+ "kind": "SCALAR",
3533
+ "name": "String",
3534
+ "ofType": null
3535
+ }
3536
+ },
3537
+ "isDeprecated": false,
3538
+ "deprecationReason": null
3539
+ },
3540
+ {
3541
+ "name": "type",
3542
+ "description": null,
3543
+ "args": [],
3544
+ "type": {
3545
+ "kind": "NON_NULL",
3546
+ "name": null,
3547
+ "ofType": {
3548
+ "kind": "OBJECT",
3549
+ "name": "__Type",
3550
+ "ofType": null
3551
+ }
3552
+ },
3553
+ "isDeprecated": false,
3554
+ "deprecationReason": null
3555
+ }
3556
+ ],
3557
+ "inputFields": null,
3558
+ "interfaces": [],
3559
+ "enumValues": null,
3560
+ "possibleTypes": null
3561
+ },
3562
+ {
3563
+ "kind": "OBJECT",
3564
+ "name": "__InputValue",
3565
+ "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
3566
+ "fields": [
3567
+ {
3568
+ "name": "defaultValue",
3569
+ "description": "A GraphQL-formatted string representing the default value for this input value.",
3570
+ "args": [],
3571
+ "type": {
3572
+ "kind": "SCALAR",
3573
+ "name": "String",
3574
+ "ofType": null
3575
+ },
3576
+ "isDeprecated": false,
3577
+ "deprecationReason": null
3578
+ },
3579
+ {
3580
+ "name": "description",
3581
+ "description": null,
3582
+ "args": [],
3583
+ "type": {
3584
+ "kind": "SCALAR",
3585
+ "name": "String",
3586
+ "ofType": null
3587
+ },
3588
+ "isDeprecated": false,
3589
+ "deprecationReason": null
3590
+ },
3591
+ {
3592
+ "name": "name",
3593
+ "description": null,
3594
+ "args": [],
3595
+ "type": {
3596
+ "kind": "NON_NULL",
3597
+ "name": null,
3598
+ "ofType": {
3599
+ "kind": "SCALAR",
3600
+ "name": "String",
3601
+ "ofType": null
3602
+ }
3603
+ },
3604
+ "isDeprecated": false,
3605
+ "deprecationReason": null
3606
+ },
3607
+ {
3608
+ "name": "type",
3609
+ "description": null,
3610
+ "args": [],
3611
+ "type": {
3612
+ "kind": "NON_NULL",
3613
+ "name": null,
3614
+ "ofType": {
3615
+ "kind": "OBJECT",
3616
+ "name": "__Type",
3617
+ "ofType": null
3618
+ }
3619
+ },
3620
+ "isDeprecated": false,
3621
+ "deprecationReason": null
3622
+ }
3623
+ ],
3624
+ "inputFields": null,
3625
+ "interfaces": [],
3626
+ "enumValues": null,
3627
+ "possibleTypes": null
3628
+ },
3629
+ {
3630
+ "kind": "OBJECT",
3631
+ "name": "__Schema",
3632
+ "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
3633
+ "fields": [
3634
+ {
3635
+ "name": "directives",
3636
+ "description": "A list of all directives supported by this server.",
3637
+ "args": [],
3638
+ "type": {
3639
+ "kind": "NON_NULL",
3640
+ "name": null,
3641
+ "ofType": {
3642
+ "kind": "LIST",
3643
+ "name": null,
3644
+ "ofType": {
3645
+ "kind": "NON_NULL",
3646
+ "name": null,
3647
+ "ofType": {
3648
+ "kind": "OBJECT",
3649
+ "name": "__Directive",
3650
+ "ofType": null
3651
+ }
3652
+ }
3653
+ }
3654
+ },
3655
+ "isDeprecated": false,
3656
+ "deprecationReason": null
3657
+ },
3658
+ {
3659
+ "name": "mutationType",
3660
+ "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
3661
+ "args": [],
3662
+ "type": {
3663
+ "kind": "OBJECT",
3664
+ "name": "__Type",
3665
+ "ofType": null
3666
+ },
3667
+ "isDeprecated": false,
3668
+ "deprecationReason": null
3669
+ },
3670
+ {
3671
+ "name": "queryType",
3672
+ "description": "The type that query operations will be rooted at.",
3673
+ "args": [],
3674
+ "type": {
3675
+ "kind": "NON_NULL",
3676
+ "name": null,
3677
+ "ofType": {
3678
+ "kind": "OBJECT",
3679
+ "name": "__Type",
3680
+ "ofType": null
3681
+ }
3682
+ },
3683
+ "isDeprecated": false,
3684
+ "deprecationReason": null
3685
+ },
3686
+ {
3687
+ "name": "subscriptionType",
3688
+ "description": "If this server support subscription, the type that subscription operations will be rooted at.",
3689
+ "args": [],
3690
+ "type": {
3691
+ "kind": "OBJECT",
3692
+ "name": "__Type",
3693
+ "ofType": null
3694
+ },
3695
+ "isDeprecated": false,
3696
+ "deprecationReason": null
3697
+ },
3698
+ {
3699
+ "name": "types",
3700
+ "description": "A list of all types supported by this server.",
3701
+ "args": [],
3702
+ "type": {
3703
+ "kind": "NON_NULL",
3704
+ "name": null,
3705
+ "ofType": {
3706
+ "kind": "LIST",
3707
+ "name": null,
3708
+ "ofType": {
3709
+ "kind": "NON_NULL",
3710
+ "name": null,
3711
+ "ofType": {
3712
+ "kind": "OBJECT",
3713
+ "name": "__Type",
3714
+ "ofType": null
3715
+ }
3716
+ }
3717
+ }
3718
+ },
3719
+ "isDeprecated": false,
3720
+ "deprecationReason": null
3721
+ }
3722
+ ],
3723
+ "inputFields": null,
3724
+ "interfaces": [],
3725
+ "enumValues": null,
3726
+ "possibleTypes": null
3727
+ },
3728
+ {
3729
+ "kind": "OBJECT",
3730
+ "name": "__Type",
3731
+ "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
3732
+ "fields": [
3733
+ {
3734
+ "name": "description",
3735
+ "description": null,
3736
+ "args": [],
3737
+ "type": {
3738
+ "kind": "SCALAR",
3739
+ "name": "String",
3740
+ "ofType": null
3741
+ },
3742
+ "isDeprecated": false,
3743
+ "deprecationReason": null
3744
+ },
3745
+ {
3746
+ "name": "enumValues",
3747
+ "description": null,
3748
+ "args": [
3749
+ {
3750
+ "name": "includeDeprecated",
3751
+ "description": null,
3752
+ "type": {
3753
+ "kind": "SCALAR",
3754
+ "name": "Boolean",
3755
+ "ofType": null
3756
+ },
3757
+ "defaultValue": "false"
3758
+ }
3759
+ ],
3760
+ "type": {
3761
+ "kind": "LIST",
3762
+ "name": null,
3763
+ "ofType": {
3764
+ "kind": "NON_NULL",
3765
+ "name": null,
3766
+ "ofType": {
3767
+ "kind": "OBJECT",
3768
+ "name": "__EnumValue",
3769
+ "ofType": null
3770
+ }
3771
+ }
3772
+ },
3773
+ "isDeprecated": false,
3774
+ "deprecationReason": null
3775
+ },
3776
+ {
3777
+ "name": "fields",
3778
+ "description": null,
3779
+ "args": [
3780
+ {
3781
+ "name": "includeDeprecated",
3782
+ "description": null,
3783
+ "type": {
3784
+ "kind": "SCALAR",
3785
+ "name": "Boolean",
3786
+ "ofType": null
3787
+ },
3788
+ "defaultValue": "false"
3789
+ }
3790
+ ],
3791
+ "type": {
3792
+ "kind": "LIST",
3793
+ "name": null,
3794
+ "ofType": {
3795
+ "kind": "NON_NULL",
3796
+ "name": null,
3797
+ "ofType": {
3798
+ "kind": "OBJECT",
3799
+ "name": "__Field",
3800
+ "ofType": null
3801
+ }
3802
+ }
3803
+ },
3804
+ "isDeprecated": false,
3805
+ "deprecationReason": null
3806
+ },
3807
+ {
3808
+ "name": "inputFields",
3809
+ "description": null,
3810
+ "args": [],
3811
+ "type": {
3812
+ "kind": "LIST",
3813
+ "name": null,
3814
+ "ofType": {
3815
+ "kind": "NON_NULL",
3816
+ "name": null,
3817
+ "ofType": {
3818
+ "kind": "OBJECT",
3819
+ "name": "__InputValue",
3820
+ "ofType": null
3821
+ }
3822
+ }
3823
+ },
3824
+ "isDeprecated": false,
3825
+ "deprecationReason": null
3826
+ },
3827
+ {
3828
+ "name": "interfaces",
3829
+ "description": null,
3830
+ "args": [],
3831
+ "type": {
3832
+ "kind": "LIST",
3833
+ "name": null,
3834
+ "ofType": {
3835
+ "kind": "NON_NULL",
3836
+ "name": null,
3837
+ "ofType": {
3838
+ "kind": "OBJECT",
3839
+ "name": "__Type",
3840
+ "ofType": null
3841
+ }
3842
+ }
3843
+ },
3844
+ "isDeprecated": false,
3845
+ "deprecationReason": null
3846
+ },
3847
+ {
3848
+ "name": "kind",
3849
+ "description": null,
3850
+ "args": [],
3851
+ "type": {
3852
+ "kind": "NON_NULL",
3853
+ "name": null,
3854
+ "ofType": {
3855
+ "kind": "ENUM",
3856
+ "name": "__TypeKind",
3857
+ "ofType": null
3858
+ }
3859
+ },
3860
+ "isDeprecated": false,
3861
+ "deprecationReason": null
3862
+ },
3863
+ {
3864
+ "name": "name",
3865
+ "description": null,
3866
+ "args": [],
3867
+ "type": {
3868
+ "kind": "SCALAR",
3869
+ "name": "String",
3870
+ "ofType": null
3871
+ },
3872
+ "isDeprecated": false,
3873
+ "deprecationReason": null
3874
+ },
3875
+ {
3876
+ "name": "ofType",
3877
+ "description": null,
3878
+ "args": [],
3879
+ "type": {
3880
+ "kind": "OBJECT",
3881
+ "name": "__Type",
3882
+ "ofType": null
3883
+ },
3884
+ "isDeprecated": false,
3885
+ "deprecationReason": null
3886
+ },
3887
+ {
3888
+ "name": "possibleTypes",
3889
+ "description": null,
3890
+ "args": [],
3891
+ "type": {
3892
+ "kind": "LIST",
3893
+ "name": null,
3894
+ "ofType": {
3895
+ "kind": "NON_NULL",
3896
+ "name": null,
3897
+ "ofType": {
3898
+ "kind": "OBJECT",
3899
+ "name": "__Type",
3900
+ "ofType": null
3901
+ }
3902
+ }
3903
+ },
3904
+ "isDeprecated": false,
3905
+ "deprecationReason": null
3906
+ }
3907
+ ],
3908
+ "inputFields": null,
3909
+ "interfaces": [],
3910
+ "enumValues": null,
3911
+ "possibleTypes": null
3912
+ },
3913
+ {
3914
+ "kind": "ENUM",
3915
+ "name": "__TypeKind",
3916
+ "description": "An enum describing what kind of type a given `__Type` is.",
3917
+ "fields": null,
3918
+ "inputFields": null,
3919
+ "interfaces": null,
3920
+ "enumValues": [
3921
+ {
3922
+ "name": "SCALAR",
3923
+ "description": "Indicates this type is a scalar.",
3924
+ "isDeprecated": false,
3925
+ "deprecationReason": null
3926
+ },
3927
+ {
3928
+ "name": "OBJECT",
3929
+ "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
3930
+ "isDeprecated": false,
3931
+ "deprecationReason": null
3932
+ },
3933
+ {
3934
+ "name": "INTERFACE",
3935
+ "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.",
3936
+ "isDeprecated": false,
3937
+ "deprecationReason": null
3938
+ },
3939
+ {
3940
+ "name": "UNION",
3941
+ "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
3942
+ "isDeprecated": false,
3943
+ "deprecationReason": null
3944
+ },
3945
+ {
3946
+ "name": "ENUM",
3947
+ "description": "Indicates this type is an enum. `enumValues` is a valid field.",
3948
+ "isDeprecated": false,
3949
+ "deprecationReason": null
3950
+ },
3951
+ {
3952
+ "name": "INPUT_OBJECT",
3953
+ "description": "Indicates this type is an input object. `inputFields` is a valid field.",
3954
+ "isDeprecated": false,
3955
+ "deprecationReason": null
3956
+ },
3957
+ {
3958
+ "name": "LIST",
3959
+ "description": "Indicates this type is a list. `ofType` is a valid field.",
3960
+ "isDeprecated": false,
3961
+ "deprecationReason": null
3962
+ },
3963
+ {
3964
+ "name": "NON_NULL",
3965
+ "description": "Indicates this type is a non-null. `ofType` is a valid field.",
3966
+ "isDeprecated": false,
3967
+ "deprecationReason": null
3968
+ }
3969
+ ],
3970
+ "possibleTypes": null
3971
+ }
3972
+ ],
3973
+ "directives": [
3974
+ {
3975
+ "name": "include",
3976
+ "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
3977
+ "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
3978
+ "args": [
3979
+ {
3980
+ "name": "if",
3981
+ "description": "Included when true.",
3982
+ "type": {
3983
+ "kind": "NON_NULL",
3984
+ "name": null,
3985
+ "ofType": {
3986
+ "kind": "SCALAR",
3987
+ "name": "Boolean",
3988
+ "ofType": null
3989
+ }
3990
+ },
3991
+ "defaultValue": null
3992
+ }
3993
+ ]
3994
+ },
3995
+ {
3996
+ "name": "skip",
3997
+ "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
3998
+ "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
3999
+ "args": [
4000
+ {
4001
+ "name": "if",
4002
+ "description": "Skipped when true.",
4003
+ "type": {
4004
+ "kind": "NON_NULL",
4005
+ "name": null,
4006
+ "ofType": {
4007
+ "kind": "SCALAR",
4008
+ "name": "Boolean",
4009
+ "ofType": null
4010
+ }
4011
+ },
4012
+ "defaultValue": null
4013
+ }
4014
+ ]
4015
+ },
4016
+ {
4017
+ "name": "deprecated",
4018
+ "description": "Marks an element of a GraphQL schema as no longer supported.",
4019
+ "locations": ["FIELD_DEFINITION", "ENUM_VALUE"],
4020
+ "args": [
4021
+ {
4022
+ "name": "reason",
4023
+ "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
4024
+ "type": {
4025
+ "kind": "SCALAR",
4026
+ "name": "String",
4027
+ "ofType": null
4028
+ },
4029
+ "defaultValue": "\"No longer supported\""
4030
+ }
4031
+ ]
4032
+ }
4033
+ ]
4034
+ }
4035
+ }
4036
+ }