billfixers-partner 0.1.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 421f12c33babd09fd40c87353f888f4960eee10e3805d6f2eb7205499a149881
4
- data.tar.gz: 27c1543c2706afe129eb457e67d492997211708bc3c899944ddd322794432fed
3
+ metadata.gz: d53a90d8b2d8baf0d1d69d6c76c7cb5050c68e83dc2a4a768aab05ce83127dd5
4
+ data.tar.gz: '0085f538e06226e2c05968d4d8f2994ffd3f14a3d985323a623dc723886884d9'
5
5
  SHA512:
6
- metadata.gz: 47763f221b005c6344004f38a7a6b9f6a10fcc5cbf873913bbd4fe563cf417a70f55ee93502c96ee5a4794780f7e6a9cc21404f1df25f5723976499f30883758
7
- data.tar.gz: 8c8167d741f8ff8f121b571d838b31824bdf184ebd10ee81627483ac2e125f0a014cba866ec2d1cb072f1a02bb9befdb211033ded6fc066209879c56f966431f
6
+ metadata.gz: a365323e7fb244046c62424bc8cbc003552dc77ac5007cafedbc465ee0ddacb5be5d7b21dc556041d60934566c2703240c75e656a2d18ed337c76d201f421365
7
+ data.tar.gz: cc80f1cc5c56f5d84f65f205166c6626291472777503f7df79b1ae7f1094ea12f087c08264324e9db755df6151306d4f6222364cb26c20e8526e83f43c7841d7
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.6.5
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- billfixers-partner (0.1.0)
4
+ billfixers-partner (1.0.0)
5
5
  activesupport
6
6
  graphlient
7
7
 
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # Billfixers::Partner
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/billfixers/partner`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -22,15 +18,14 @@ Or install it yourself as:
22
18
 
23
19
  ## Usage
24
20
 
25
- TODO: Write usage instructions here
21
+ Please visit <https://partner.billfixers.com> to see our documentation.
26
22
 
27
- ## Development
23
+ <!-- ## Development
28
24
 
29
25
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
26
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). -->
34
28
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/billfixers-partner.
29
+ <!-- ## Contributing
36
30
 
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/billfixers-partner. -->
@@ -46,12 +46,13 @@ module Billfixers
46
46
  [result.total_count, result.nodes]
47
47
  end
48
48
 
49
- def list_offers(limit: 25, offset: 0, customer_id: nil, bill_id: nil)
49
+ def list_offers(limit: 25, offset: 0, customer_id: nil, bill_id: nil, status: nil)
50
50
  response = @gql.query(LIST_OFFERS_QUERY, {
51
51
  limit: limit,
52
52
  offset: offset,
53
53
  customer_id: customer_id,
54
- bill_id: bill_id
54
+ bill_id: bill_id,
55
+ status: status
55
56
  })
56
57
 
57
58
  result = response.data.list_offers
@@ -59,6 +60,18 @@ module Billfixers
59
60
  [result.total_count, result.nodes]
60
61
  end
61
62
 
63
+ def list_information_requests(limit: 25, offset: 0, customer_id: nil)
64
+ response = @gql.query(LIST_INFORMATION_REQUESTS_QUERY, {
65
+ limit: limit,
66
+ offset: offset,
67
+ customer_id: customer_id
68
+ })
69
+
70
+ result = response.data.list_information_requests
71
+
72
+ [result.total_count, result.nodes]
73
+ end
74
+
62
75
  def find_customer(customer_id)
63
76
  response = @gql.query(FIND_CUSTOMER_QUERY, { id: customer_id })
64
77
  response.data.find_customer
@@ -69,6 +82,16 @@ module Billfixers
69
82
  response.data.find_bill
70
83
  end
71
84
 
85
+ def find_offer(offer_id)
86
+ response = @gql.query(FIND_OFFER_QUERY, { id: offer_id })
87
+ response.data.find_offer
88
+ end
89
+
90
+ def find_information_request(information_request_id)
91
+ response = @gql.query(FIND_INFORMATION_REQUEST_QUERY, { id: information_request_id })
92
+ response.data.find_information_request
93
+ end
94
+
72
95
  def create_customer(params)
73
96
  response = @gql.query(CREATE_CUSTOMER_MUTATION, {
74
97
  customer: camelize(params)
@@ -80,8 +103,9 @@ module Billfixers
80
103
  result.customer
81
104
  end
82
105
 
83
- def create_bill(params)
106
+ def create_bill(customer_id, params)
84
107
  response = @gql.query(CREATE_BILL_MUTATION, {
108
+ customer_id: customer_id,
85
109
  bill: camelize(params)
86
110
  })
87
111
 
@@ -110,11 +134,27 @@ module Billfixers
110
134
  response = @gql.query(REJECT_OFFER_MUTATION, { id: offer_id })
111
135
 
112
136
  result = response.data.reject_offer
137
+ # binding.pry
113
138
  raise Error, result.errors.join(' ') unless result.success
114
139
 
115
140
  result.offer
116
141
  end
117
142
 
143
+ def respond_to_information_request(information_request_id, params)
144
+ response = @gql.query(
145
+ RESPOND_TO_INFORMATION_REQUEST,
146
+ {
147
+ id: information_request_id,
148
+ information_request: camelize(params)
149
+ }
150
+ )
151
+
152
+ result = response.data.respond_to_information_request
153
+ raise Error, result.errors.join(' ') unless result.success
154
+
155
+ result.information_request
156
+ end
157
+
118
158
  private
119
159
 
120
160
  def camelize(hsh)
@@ -6,6 +6,7 @@ module Billfixers
6
6
  id
7
7
  name
8
8
  services
9
+ billFields
9
10
  )
10
11
 
11
12
  CUSTOMER_FRAGMENT = %(
@@ -17,12 +18,6 @@ module Billfixers
17
18
  phoneNumber
18
19
  avatarUrl
19
20
  b2b
20
- addressLine1
21
- addressLine2
22
- addressCity
23
- addressState
24
- addressPostalCode
25
- addressCountryCode
26
21
  createdAt
27
22
  updatedAt
28
23
  )
@@ -79,6 +74,21 @@ module Billfixers
79
74
  }
80
75
  )
81
76
 
77
+ INFORMATION_REQUEST_FRAGMENT = %(
78
+ id
79
+ content
80
+ contentHtml
81
+ createdAt
82
+ respondedAt
83
+ fields {
84
+ id
85
+ label
86
+ placeholder
87
+ dataType
88
+ value
89
+ }
90
+ )
91
+
82
92
  LIST_PROVIDERS_QUERY = %(
83
93
  query {
84
94
  ListProviders {
@@ -117,12 +127,13 @@ module Billfixers
117
127
  )
118
128
 
119
129
  LIST_OFFERS_QUERY = %(
120
- query($limit: Int, $offset: Int, $customer_id: ID, $bill_id: ID) {
130
+ query($limit: Int, $offset: Int, $customer_id: ID, $bill_id: ID, $status: String) {
121
131
  ListOffers(
122
132
  limit: $limit,
123
133
  offset: $offset,
124
134
  customerId: $customer_id,
125
- billId: $bill_id
135
+ billId: $bill_id,
136
+ status: $status
126
137
  ) {
127
138
  totalCount
128
139
  nodes {
@@ -132,6 +143,21 @@ module Billfixers
132
143
  }
133
144
  )
134
145
 
146
+ LIST_INFORMATION_REQUESTS_QUERY = %(
147
+ query($limit: Int, $offset: Int, $customer_id: ID) {
148
+ ListInformationRequests(
149
+ limit: $limit,
150
+ offset: $offset,
151
+ customerId: $customer_id
152
+ ) {
153
+ totalCount
154
+ nodes {
155
+ #{INFORMATION_REQUEST_FRAGMENT}
156
+ }
157
+ }
158
+ }
159
+ )
160
+
135
161
  FIND_CUSTOMER_QUERY = %(
136
162
  query($id: ID!) {
137
163
  FindCustomer(id: $id) {
@@ -148,6 +174,22 @@ module Billfixers
148
174
  }
149
175
  )
150
176
 
177
+ FIND_OFFER_QUERY = %(
178
+ query($id: ID!) {
179
+ FindOffer(id: $id) {
180
+ #{OFFER_FRAGMENT}
181
+ }
182
+ }
183
+ )
184
+
185
+ FIND_INFORMATION_REQUEST_QUERY = %(
186
+ query($id: ID!) {
187
+ FindInformationRequest(id: $id) {
188
+ #{INFORMATION_REQUEST_FRAGMENT}
189
+ }
190
+ }
191
+ )
192
+
151
193
  CREATE_CUSTOMER_MUTATION = %(
152
194
  mutation($customer: CustomerAttributes!) {
153
195
  CreateCustomer(input: { customer: $customer }) {
@@ -161,8 +203,8 @@ module Billfixers
161
203
  )
162
204
 
163
205
  CREATE_BILL_MUTATION = %(
164
- mutation($bill: BillAttributes!) {
165
- CreateBill(input: { bill: $bill }) {
206
+ mutation($customer_id: ID!, $bill: BillAttributes!) {
207
+ CreateBill(input: { customerId: $customer_id, bill: $bill }) {
166
208
  success
167
209
  errors
168
210
  bill {
@@ -203,5 +245,20 @@ module Billfixers
203
245
  }
204
246
  }
205
247
  )
248
+
249
+ RESPOND_TO_INFORMATION_REQUEST = %(
250
+ mutation($id: ID!, $ir: InformationRequestAttributes!) {
251
+ RespondToInformationRequest(input: {
252
+ id: $id,
253
+ informationRequest: $ir
254
+ }) {
255
+ success
256
+ errors
257
+ informationRequest {
258
+ #{INFORMATION_REQUEST_FRAGMENT}
259
+ }
260
+ }
261
+ }
262
+ )
206
263
  end
207
264
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Billfixers
2
4
  module Partner
3
- VERSION = '0.1.1'.freeze
5
+ VERSION = '1.1.0'
4
6
  end
5
7
  end
data/partner_schema.json CHANGED
@@ -52,7 +52,9 @@
52
52
  {
53
53
  "name": "clientMutationId",
54
54
  "description": "A unique identifier for the client performing the mutation.",
55
- "args": [],
55
+ "args": [
56
+
57
+ ],
56
58
  "type": {
57
59
  "kind": "SCALAR",
58
60
  "name": "String",
@@ -64,7 +66,9 @@
64
66
  {
65
67
  "name": "errors",
66
68
  "description": null,
67
- "args": [],
69
+ "args": [
70
+
71
+ ],
68
72
  "type": {
69
73
  "kind": "NON_NULL",
70
74
  "name": null,
@@ -88,7 +92,9 @@
88
92
  {
89
93
  "name": "offer",
90
94
  "description": null,
91
- "args": [],
95
+ "args": [
96
+
97
+ ],
92
98
  "type": {
93
99
  "kind": "OBJECT",
94
100
  "name": "Offer",
@@ -100,7 +106,9 @@
100
106
  {
101
107
  "name": "success",
102
108
  "description": null,
103
- "args": [],
109
+ "args": [
110
+
111
+ ],
104
112
  "type": {
105
113
  "kind": "NON_NULL",
106
114
  "name": null,
@@ -115,7 +123,9 @@
115
123
  }
116
124
  ],
117
125
  "inputFields": null,
118
- "interfaces": [],
126
+ "interfaces": [
127
+
128
+ ],
119
129
  "enumValues": null,
120
130
  "possibleTypes": null
121
131
  },
@@ -127,7 +137,9 @@
127
137
  {
128
138
  "name": "createdAt",
129
139
  "description": "The date the record was created",
130
- "args": [],
140
+ "args": [
141
+
142
+ ],
131
143
  "type": {
132
144
  "kind": "NON_NULL",
133
145
  "name": null,
@@ -143,7 +155,9 @@
143
155
  {
144
156
  "name": "customer",
145
157
  "description": null,
146
- "args": [],
158
+ "args": [
159
+
160
+ ],
147
161
  "type": {
148
162
  "kind": "NON_NULL",
149
163
  "name": null,
@@ -156,10 +170,30 @@
156
170
  "isDeprecated": false,
157
171
  "deprecationReason": null
158
172
  },
173
+ {
174
+ "name": "customerId",
175
+ "description": "Billfixer's alpha-numeric Customer ID",
176
+ "args": [
177
+
178
+ ],
179
+ "type": {
180
+ "kind": "NON_NULL",
181
+ "name": null,
182
+ "ofType": {
183
+ "kind": "SCALAR",
184
+ "name": "ID",
185
+ "ofType": null
186
+ }
187
+ },
188
+ "isDeprecated": false,
189
+ "deprecationReason": null
190
+ },
159
191
  {
160
192
  "name": "id",
161
193
  "description": "Alpha-numeric unique identifier",
162
- "args": [],
194
+ "args": [
195
+
196
+ ],
163
197
  "type": {
164
198
  "kind": "NON_NULL",
165
199
  "name": null,
@@ -175,7 +209,9 @@
175
209
  {
176
210
  "name": "items",
177
211
  "description": "The items on the bill",
178
- "args": [],
212
+ "args": [
213
+
214
+ ],
179
215
  "type": {
180
216
  "kind": "NON_NULL",
181
217
  "name": null,
@@ -199,7 +235,9 @@
199
235
  {
200
236
  "name": "offers",
201
237
  "description": null,
202
- "args": [],
238
+ "args": [
239
+
240
+ ],
203
241
  "type": {
204
242
  "kind": "NON_NULL",
205
243
  "name": null,
@@ -223,7 +261,9 @@
223
261
  {
224
262
  "name": "provider",
225
263
  "description": null,
226
- "args": [],
264
+ "args": [
265
+
266
+ ],
227
267
  "type": {
228
268
  "kind": "NON_NULL",
229
269
  "name": null,
@@ -239,7 +279,9 @@
239
279
  {
240
280
  "name": "providerId",
241
281
  "description": "Billfixer's alpha-numeric Provider ID",
242
- "args": [],
282
+ "args": [
283
+
284
+ ],
243
285
  "type": {
244
286
  "kind": "NON_NULL",
245
287
  "name": null,
@@ -255,7 +297,9 @@
255
297
  {
256
298
  "name": "status",
257
299
  "description": "Status of the bill",
258
- "args": [],
300
+ "args": [
301
+
302
+ ],
259
303
  "type": {
260
304
  "kind": "NON_NULL",
261
305
  "name": null,
@@ -271,7 +315,9 @@
271
315
  {
272
316
  "name": "title",
273
317
  "description": "Title of the bill",
274
- "args": [],
318
+ "args": [
319
+
320
+ ],
275
321
  "type": {
276
322
  "kind": "NON_NULL",
277
323
  "name": null,
@@ -287,7 +333,9 @@
287
333
  {
288
334
  "name": "totalSavings",
289
335
  "description": "The total value gained from negotiations",
290
- "args": [],
336
+ "args": [
337
+
338
+ ],
291
339
  "type": {
292
340
  "kind": "NON_NULL",
293
341
  "name": null,
@@ -303,7 +351,9 @@
303
351
  {
304
352
  "name": "updatedAt",
305
353
  "description": "The last time the record was updated",
306
- "args": [],
354
+ "args": [
355
+
356
+ ],
307
357
  "type": {
308
358
  "kind": "NON_NULL",
309
359
  "name": null,
@@ -318,7 +368,9 @@
318
368
  }
319
369
  ],
320
370
  "inputFields": null,
321
- "interfaces": [],
371
+ "interfaces": [
372
+
373
+ ],
322
374
  "enumValues": null,
323
375
  "possibleTypes": null
324
376
  },
@@ -401,16 +453,12 @@
401
453
  "defaultValue": null
402
454
  },
403
455
  {
404
- "name": "customer",
456
+ "name": "createdVia",
405
457
  "description": null,
406
458
  "type": {
407
- "kind": "NON_NULL",
408
- "name": null,
409
- "ofType": {
410
- "kind": "INPUT_OBJECT",
411
- "name": "CustomerAttributes",
412
- "ofType": null
413
- }
459
+ "kind": "SCALAR",
460
+ "name": "String",
461
+ "ofType": null
414
462
  },
415
463
  "defaultValue": null
416
464
  }
@@ -427,7 +475,9 @@
427
475
  {
428
476
  "name": "edges",
429
477
  "description": "A list of edges.",
430
- "args": [],
478
+ "args": [
479
+
480
+ ],
431
481
  "type": {
432
482
  "kind": "NON_NULL",
433
483
  "name": null,
@@ -451,7 +501,9 @@
451
501
  {
452
502
  "name": "nodes",
453
503
  "description": "A list of nodes.",
454
- "args": [],
504
+ "args": [
505
+
506
+ ],
455
507
  "type": {
456
508
  "kind": "NON_NULL",
457
509
  "name": null,
@@ -475,7 +527,9 @@
475
527
  {
476
528
  "name": "pageInfo",
477
529
  "description": "Information to aid in pagination.",
478
- "args": [],
530
+ "args": [
531
+
532
+ ],
479
533
  "type": {
480
534
  "kind": "NON_NULL",
481
535
  "name": null,
@@ -491,7 +545,9 @@
491
545
  {
492
546
  "name": "totalCount",
493
547
  "description": null,
494
- "args": [],
548
+ "args": [
549
+
550
+ ],
495
551
  "type": {
496
552
  "kind": "NON_NULL",
497
553
  "name": null,
@@ -507,7 +563,9 @@
507
563
  {
508
564
  "name": "totalSavings",
509
565
  "description": null,
510
- "args": [],
566
+ "args": [
567
+
568
+ ],
511
569
  "type": {
512
570
  "kind": "NON_NULL",
513
571
  "name": null,
@@ -522,7 +580,9 @@
522
580
  }
523
581
  ],
524
582
  "inputFields": null,
525
- "interfaces": [],
583
+ "interfaces": [
584
+
585
+ ],
526
586
  "enumValues": null,
527
587
  "possibleTypes": null
528
588
  },
@@ -534,7 +594,9 @@
534
594
  {
535
595
  "name": "cursor",
536
596
  "description": "A cursor for use in pagination.",
537
- "args": [],
597
+ "args": [
598
+
599
+ ],
538
600
  "type": {
539
601
  "kind": "NON_NULL",
540
602
  "name": null,
@@ -550,7 +612,9 @@
550
612
  {
551
613
  "name": "node",
552
614
  "description": "The item at the end of the edge.",
553
- "args": [],
615
+ "args": [
616
+
617
+ ],
554
618
  "type": {
555
619
  "kind": "OBJECT",
556
620
  "name": "Bill",
@@ -561,7 +625,9 @@
561
625
  }
562
626
  ],
563
627
  "inputFields": null,
564
- "interfaces": [],
628
+ "interfaces": [
629
+
630
+ ],
565
631
  "enumValues": null,
566
632
  "possibleTypes": null
567
633
  },
@@ -618,7 +684,9 @@
618
684
  {
619
685
  "name": "clientMutationId",
620
686
  "description": "A unique identifier for the client performing the mutation.",
621
- "args": [],
687
+ "args": [
688
+
689
+ ],
622
690
  "type": {
623
691
  "kind": "SCALAR",
624
692
  "name": "String",
@@ -630,7 +698,9 @@
630
698
  {
631
699
  "name": "success",
632
700
  "description": null,
633
- "args": [],
701
+ "args": [
702
+
703
+ ],
634
704
  "type": {
635
705
  "kind": "NON_NULL",
636
706
  "name": null,
@@ -645,7 +715,9 @@
645
715
  }
646
716
  ],
647
717
  "inputFields": null,
648
- "interfaces": [],
718
+ "interfaces": [
719
+
720
+ ],
649
721
  "enumValues": null,
650
722
  "possibleTypes": null
651
723
  },
@@ -655,6 +727,20 @@
655
727
  "description": "Autogenerated input type of CreateBill",
656
728
  "fields": null,
657
729
  "inputFields": [
730
+ {
731
+ "name": "customerId",
732
+ "description": null,
733
+ "type": {
734
+ "kind": "NON_NULL",
735
+ "name": null,
736
+ "ofType": {
737
+ "kind": "SCALAR",
738
+ "name": "ID",
739
+ "ofType": null
740
+ }
741
+ },
742
+ "defaultValue": null
743
+ },
658
744
  {
659
745
  "name": "bill",
660
746
  "description": null,
@@ -692,7 +778,9 @@
692
778
  {
693
779
  "name": "bill",
694
780
  "description": null,
695
- "args": [],
781
+ "args": [
782
+
783
+ ],
696
784
  "type": {
697
785
  "kind": "OBJECT",
698
786
  "name": "Bill",
@@ -704,7 +792,9 @@
704
792
  {
705
793
  "name": "clientMutationId",
706
794
  "description": "A unique identifier for the client performing the mutation.",
707
- "args": [],
795
+ "args": [
796
+
797
+ ],
708
798
  "type": {
709
799
  "kind": "SCALAR",
710
800
  "name": "String",
@@ -716,7 +806,9 @@
716
806
  {
717
807
  "name": "errors",
718
808
  "description": null,
719
- "args": [],
809
+ "args": [
810
+
811
+ ],
720
812
  "type": {
721
813
  "kind": "NON_NULL",
722
814
  "name": null,
@@ -740,7 +832,9 @@
740
832
  {
741
833
  "name": "success",
742
834
  "description": null,
743
- "args": [],
835
+ "args": [
836
+
837
+ ],
744
838
  "type": {
745
839
  "kind": "NON_NULL",
746
840
  "name": null,
@@ -755,7 +849,9 @@
755
849
  }
756
850
  ],
757
851
  "inputFields": null,
758
- "interfaces": [],
852
+ "interfaces": [
853
+
854
+ ],
759
855
  "enumValues": null,
760
856
  "possibleTypes": null
761
857
  },
@@ -802,7 +898,9 @@
802
898
  {
803
899
  "name": "clientMutationId",
804
900
  "description": "A unique identifier for the client performing the mutation.",
805
- "args": [],
901
+ "args": [
902
+
903
+ ],
806
904
  "type": {
807
905
  "kind": "SCALAR",
808
906
  "name": "String",
@@ -814,7 +912,9 @@
814
912
  {
815
913
  "name": "customer",
816
914
  "description": null,
817
- "args": [],
915
+ "args": [
916
+
917
+ ],
818
918
  "type": {
819
919
  "kind": "OBJECT",
820
920
  "name": "Customer",
@@ -826,7 +926,9 @@
826
926
  {
827
927
  "name": "errors",
828
928
  "description": null,
829
- "args": [],
929
+ "args": [
930
+
931
+ ],
830
932
  "type": {
831
933
  "kind": "NON_NULL",
832
934
  "name": null,
@@ -850,7 +952,9 @@
850
952
  {
851
953
  "name": "success",
852
954
  "description": null,
853
- "args": [],
955
+ "args": [
956
+
957
+ ],
854
958
  "type": {
855
959
  "kind": "NON_NULL",
856
960
  "name": null,
@@ -865,7 +969,9 @@
865
969
  }
866
970
  ],
867
971
  "inputFields": null,
868
- "interfaces": [],
972
+ "interfaces": [
973
+
974
+ ],
869
975
  "enumValues": null,
870
976
  "possibleTypes": null
871
977
  },
@@ -874,82 +980,12 @@
874
980
  "name": "Customer",
875
981
  "description": "The person being billed by a provider",
876
982
  "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
983
  {
950
984
  "name": "avatarUrl",
951
985
  "description": null,
952
- "args": [],
986
+ "args": [
987
+
988
+ ],
953
989
  "type": {
954
990
  "kind": "NON_NULL",
955
991
  "name": null,
@@ -965,7 +1001,9 @@
965
1001
  {
966
1002
  "name": "b2b",
967
1003
  "description": null,
968
- "args": [],
1004
+ "args": [
1005
+
1006
+ ],
969
1007
  "type": {
970
1008
  "kind": "NON_NULL",
971
1009
  "name": null,
@@ -1038,7 +1076,9 @@
1038
1076
  {
1039
1077
  "name": "createdAt",
1040
1078
  "description": null,
1041
- "args": [],
1079
+ "args": [
1080
+
1081
+ ],
1042
1082
  "type": {
1043
1083
  "kind": "NON_NULL",
1044
1084
  "name": null,
@@ -1054,7 +1094,9 @@
1054
1094
  {
1055
1095
  "name": "email",
1056
1096
  "description": null,
1057
- "args": [],
1097
+ "args": [
1098
+
1099
+ ],
1058
1100
  "type": {
1059
1101
  "kind": "NON_NULL",
1060
1102
  "name": null,
@@ -1070,7 +1112,9 @@
1070
1112
  {
1071
1113
  "name": "firstName",
1072
1114
  "description": null,
1073
- "args": [],
1115
+ "args": [
1116
+
1117
+ ],
1074
1118
  "type": {
1075
1119
  "kind": "SCALAR",
1076
1120
  "name": "String",
@@ -1082,7 +1126,9 @@
1082
1126
  {
1083
1127
  "name": "id",
1084
1128
  "description": null,
1085
- "args": [],
1129
+ "args": [
1130
+
1131
+ ],
1086
1132
  "type": {
1087
1133
  "kind": "NON_NULL",
1088
1134
  "name": null,
@@ -1098,7 +1144,9 @@
1098
1144
  {
1099
1145
  "name": "lastName",
1100
1146
  "description": null,
1101
- "args": [],
1147
+ "args": [
1148
+
1149
+ ],
1102
1150
  "type": {
1103
1151
  "kind": "SCALAR",
1104
1152
  "name": "String",
@@ -1110,7 +1158,9 @@
1110
1158
  {
1111
1159
  "name": "name",
1112
1160
  "description": null,
1113
- "args": [],
1161
+ "args": [
1162
+
1163
+ ],
1114
1164
  "type": {
1115
1165
  "kind": "NON_NULL",
1116
1166
  "name": null,
@@ -1126,7 +1176,9 @@
1126
1176
  {
1127
1177
  "name": "phoneNumber",
1128
1178
  "description": null,
1129
- "args": [],
1179
+ "args": [
1180
+
1181
+ ],
1130
1182
  "type": {
1131
1183
  "kind": "SCALAR",
1132
1184
  "name": "String",
@@ -1138,7 +1190,9 @@
1138
1190
  {
1139
1191
  "name": "updatedAt",
1140
1192
  "description": null,
1141
- "args": [],
1193
+ "args": [
1194
+
1195
+ ],
1142
1196
  "type": {
1143
1197
  "kind": "NON_NULL",
1144
1198
  "name": null,
@@ -1153,7 +1207,9 @@
1153
1207
  }
1154
1208
  ],
1155
1209
  "inputFields": null,
1156
- "interfaces": [],
1210
+ "interfaces": [
1211
+
1212
+ ],
1157
1213
  "enumValues": null,
1158
1214
  "possibleTypes": null
1159
1215
  },
@@ -1233,66 +1289,6 @@
1233
1289
  },
1234
1290
  "defaultValue": null
1235
1291
  },
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
1292
  {
1297
1293
  "name": "phoneNumber",
1298
1294
  "description": null,
@@ -1316,7 +1312,9 @@
1316
1312
  {
1317
1313
  "name": "edges",
1318
1314
  "description": "A list of edges.",
1319
- "args": [],
1315
+ "args": [
1316
+
1317
+ ],
1320
1318
  "type": {
1321
1319
  "kind": "NON_NULL",
1322
1320
  "name": null,
@@ -1340,7 +1338,9 @@
1340
1338
  {
1341
1339
  "name": "nodes",
1342
1340
  "description": "A list of nodes.",
1343
- "args": [],
1341
+ "args": [
1342
+
1343
+ ],
1344
1344
  "type": {
1345
1345
  "kind": "NON_NULL",
1346
1346
  "name": null,
@@ -1364,7 +1364,9 @@
1364
1364
  {
1365
1365
  "name": "pageInfo",
1366
1366
  "description": "Information to aid in pagination.",
1367
- "args": [],
1367
+ "args": [
1368
+
1369
+ ],
1368
1370
  "type": {
1369
1371
  "kind": "NON_NULL",
1370
1372
  "name": null,
@@ -1380,7 +1382,9 @@
1380
1382
  {
1381
1383
  "name": "totalCount",
1382
1384
  "description": null,
1383
- "args": [],
1385
+ "args": [
1386
+
1387
+ ],
1384
1388
  "type": {
1385
1389
  "kind": "NON_NULL",
1386
1390
  "name": null,
@@ -1395,7 +1399,9 @@
1395
1399
  }
1396
1400
  ],
1397
1401
  "inputFields": null,
1398
- "interfaces": [],
1402
+ "interfaces": [
1403
+
1404
+ ],
1399
1405
  "enumValues": null,
1400
1406
  "possibleTypes": null
1401
1407
  },
@@ -1407,7 +1413,9 @@
1407
1413
  {
1408
1414
  "name": "cursor",
1409
1415
  "description": "A cursor for use in pagination.",
1410
- "args": [],
1416
+ "args": [
1417
+
1418
+ ],
1411
1419
  "type": {
1412
1420
  "kind": "NON_NULL",
1413
1421
  "name": null,
@@ -1423,7 +1431,9 @@
1423
1431
  {
1424
1432
  "name": "node",
1425
1433
  "description": "The item at the end of the edge.",
1426
- "args": [],
1434
+ "args": [
1435
+
1436
+ ],
1427
1437
  "type": {
1428
1438
  "kind": "OBJECT",
1429
1439
  "name": "Customer",
@@ -1434,7 +1444,9 @@
1434
1444
  }
1435
1445
  ],
1436
1446
  "inputFields": null,
1437
- "interfaces": [],
1447
+ "interfaces": [
1448
+
1449
+ ],
1438
1450
  "enumValues": null,
1439
1451
  "possibleTypes": null
1440
1452
  },
@@ -1448,25 +1460,17 @@
1448
1460
  "enumValues": null,
1449
1461
  "possibleTypes": null
1450
1462
  },
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
1463
  {
1462
1464
  "kind": "OBJECT",
1463
- "name": "Image",
1465
+ "name": "Fixer",
1464
1466
  "description": null,
1465
1467
  "fields": [
1466
1468
  {
1467
- "name": "grandeUrl",
1469
+ "name": "email",
1468
1470
  "description": null,
1469
- "args": [],
1471
+ "args": [
1472
+
1473
+ ],
1470
1474
  "type": {
1471
1475
  "kind": "NON_NULL",
1472
1476
  "name": null,
@@ -1480,9 +1484,11 @@
1480
1484
  "deprecationReason": null
1481
1485
  },
1482
1486
  {
1483
- "name": "iconUrl",
1487
+ "name": "firstName",
1484
1488
  "description": null,
1485
- "args": [],
1489
+ "args": [
1490
+
1491
+ ],
1486
1492
  "type": {
1487
1493
  "kind": "NON_NULL",
1488
1494
  "name": null,
@@ -1496,27 +1502,35 @@
1496
1502
  "deprecationReason": null
1497
1503
  },
1498
1504
  {
1499
- "name": "id",
1505
+ "name": "firstNameLastInitial",
1500
1506
  "description": null,
1501
- "args": [],
1507
+ "args": [
1508
+
1509
+ ],
1502
1510
  "type": {
1503
- "kind": "SCALAR",
1504
- "name": "ID",
1505
- "ofType": null
1511
+ "kind": "NON_NULL",
1512
+ "name": null,
1513
+ "ofType": {
1514
+ "kind": "SCALAR",
1515
+ "name": "String",
1516
+ "ofType": null
1517
+ }
1506
1518
  },
1507
1519
  "isDeprecated": false,
1508
1520
  "deprecationReason": null
1509
1521
  },
1510
1522
  {
1511
- "name": "imageProcessed",
1523
+ "name": "id",
1512
1524
  "description": null,
1513
- "args": [],
1525
+ "args": [
1526
+
1527
+ ],
1514
1528
  "type": {
1515
1529
  "kind": "NON_NULL",
1516
1530
  "name": null,
1517
1531
  "ofType": {
1518
1532
  "kind": "SCALAR",
1519
- "name": "Boolean",
1533
+ "name": "ID",
1520
1534
  "ofType": null
1521
1535
  }
1522
1536
  },
@@ -1524,9 +1538,11 @@
1524
1538
  "deprecationReason": null
1525
1539
  },
1526
1540
  {
1527
- "name": "largeUrl",
1541
+ "name": "lastName",
1528
1542
  "description": null,
1529
- "args": [],
1543
+ "args": [
1544
+
1545
+ ],
1530
1546
  "type": {
1531
1547
  "kind": "NON_NULL",
1532
1548
  "name": null,
@@ -1540,9 +1556,11 @@
1540
1556
  "deprecationReason": null
1541
1557
  },
1542
1558
  {
1543
- "name": "mediumUrl",
1559
+ "name": "name",
1544
1560
  "description": null,
1545
- "args": [],
1561
+ "args": [
1562
+
1563
+ ],
1546
1564
  "type": {
1547
1565
  "kind": "NON_NULL",
1548
1566
  "name": null,
@@ -1556,9 +1574,48 @@
1556
1574
  "deprecationReason": null
1557
1575
  },
1558
1576
  {
1559
- "name": "originalUrl",
1577
+ "name": "phoneNumber",
1578
+ "description": null,
1579
+ "args": [
1580
+
1581
+ ],
1582
+ "type": {
1583
+ "kind": "SCALAR",
1584
+ "name": "String",
1585
+ "ofType": null
1586
+ },
1587
+ "isDeprecated": false,
1588
+ "deprecationReason": null
1589
+ }
1590
+ ],
1591
+ "inputFields": null,
1592
+ "interfaces": [
1593
+
1594
+ ],
1595
+ "enumValues": null,
1596
+ "possibleTypes": null
1597
+ },
1598
+ {
1599
+ "kind": "SCALAR",
1600
+ "name": "ID",
1601
+ "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.",
1602
+ "fields": null,
1603
+ "inputFields": null,
1604
+ "interfaces": null,
1605
+ "enumValues": null,
1606
+ "possibleTypes": null
1607
+ },
1608
+ {
1609
+ "kind": "OBJECT",
1610
+ "name": "Image",
1611
+ "description": null,
1612
+ "fields": [
1613
+ {
1614
+ "name": "grandeUrl",
1560
1615
  "description": null,
1561
- "args": [],
1616
+ "args": [
1617
+
1618
+ ],
1562
1619
  "type": {
1563
1620
  "kind": "NON_NULL",
1564
1621
  "name": null,
@@ -1572,9 +1629,11 @@
1572
1629
  "deprecationReason": null
1573
1630
  },
1574
1631
  {
1575
- "name": "smallUrl",
1632
+ "name": "iconUrl",
1576
1633
  "description": null,
1577
- "args": [],
1634
+ "args": [
1635
+
1636
+ ],
1578
1637
  "type": {
1579
1638
  "kind": "NON_NULL",
1580
1639
  "name": null,
@@ -1588,15 +1647,31 @@
1588
1647
  "deprecationReason": null
1589
1648
  },
1590
1649
  {
1591
- "name": "thumbnailUrl",
1650
+ "name": "id",
1651
+ "description": null,
1652
+ "args": [
1653
+
1654
+ ],
1655
+ "type": {
1656
+ "kind": "SCALAR",
1657
+ "name": "ID",
1658
+ "ofType": null
1659
+ },
1660
+ "isDeprecated": false,
1661
+ "deprecationReason": null
1662
+ },
1663
+ {
1664
+ "name": "imageProcessed",
1592
1665
  "description": null,
1593
- "args": [],
1666
+ "args": [
1667
+
1668
+ ],
1594
1669
  "type": {
1595
1670
  "kind": "NON_NULL",
1596
1671
  "name": null,
1597
1672
  "ofType": {
1598
1673
  "kind": "SCALAR",
1599
- "name": "String",
1674
+ "name": "Boolean",
1600
1675
  "ofType": null
1601
1676
  }
1602
1677
  },
@@ -1604,9 +1679,11 @@
1604
1679
  "deprecationReason": null
1605
1680
  },
1606
1681
  {
1607
- "name": "tinyUrl",
1682
+ "name": "largeUrl",
1608
1683
  "description": null,
1609
- "args": [],
1684
+ "args": [
1685
+
1686
+ ],
1610
1687
  "type": {
1611
1688
  "kind": "NON_NULL",
1612
1689
  "name": null,
@@ -1618,38 +1695,19 @@
1618
1695
  },
1619
1696
  "isDeprecated": false,
1620
1697
  "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": [
1698
+ },
1643
1699
  {
1644
- "name": "createdAt",
1645
- "description": "The date the record was created",
1646
- "args": [],
1700
+ "name": "mediumUrl",
1701
+ "description": null,
1702
+ "args": [
1703
+
1704
+ ],
1647
1705
  "type": {
1648
1706
  "kind": "NON_NULL",
1649
1707
  "name": null,
1650
1708
  "ofType": {
1651
1709
  "kind": "SCALAR",
1652
- "name": "DateTime",
1710
+ "name": "String",
1653
1711
  "ofType": null
1654
1712
  }
1655
1713
  },
@@ -1657,15 +1715,17 @@
1657
1715
  "deprecationReason": null
1658
1716
  },
1659
1717
  {
1660
- "name": "duration",
1661
- "description": "The length of time in months that an item's savings is good for",
1662
- "args": [],
1718
+ "name": "originalUrl",
1719
+ "description": null,
1720
+ "args": [
1721
+
1722
+ ],
1663
1723
  "type": {
1664
1724
  "kind": "NON_NULL",
1665
1725
  "name": null,
1666
1726
  "ofType": {
1667
1727
  "kind": "SCALAR",
1668
- "name": "Int",
1728
+ "name": "String",
1669
1729
  "ofType": null
1670
1730
  }
1671
1731
  },
@@ -1673,9 +1733,11 @@
1673
1733
  "deprecationReason": null
1674
1734
  },
1675
1735
  {
1676
- "name": "name",
1677
- "description": "Name of the good or service",
1678
- "args": [],
1736
+ "name": "smallUrl",
1737
+ "description": null,
1738
+ "args": [
1739
+
1740
+ ],
1679
1741
  "type": {
1680
1742
  "kind": "NON_NULL",
1681
1743
  "name": null,
@@ -1689,15 +1751,17 @@
1689
1751
  "deprecationReason": null
1690
1752
  },
1691
1753
  {
1692
- "name": "postPrice",
1693
- "description": "The post-negotiation price",
1694
- "args": [],
1754
+ "name": "thumbnailUrl",
1755
+ "description": null,
1756
+ "args": [
1757
+
1758
+ ],
1695
1759
  "type": {
1696
1760
  "kind": "NON_NULL",
1697
1761
  "name": null,
1698
1762
  "ofType": {
1699
1763
  "kind": "SCALAR",
1700
- "name": "Money",
1764
+ "name": "String",
1701
1765
  "ofType": null
1702
1766
  }
1703
1767
  },
@@ -1705,31 +1769,48 @@
1705
1769
  "deprecationReason": null
1706
1770
  },
1707
1771
  {
1708
- "name": "prePrice",
1709
- "description": "The pre-negotiation price",
1710
- "args": [],
1772
+ "name": "tinyUrl",
1773
+ "description": null,
1774
+ "args": [
1775
+
1776
+ ],
1711
1777
  "type": {
1712
1778
  "kind": "NON_NULL",
1713
1779
  "name": null,
1714
1780
  "ofType": {
1715
1781
  "kind": "SCALAR",
1716
- "name": "Money",
1782
+ "name": "String",
1717
1783
  "ofType": null
1718
1784
  }
1719
1785
  },
1720
1786
  "isDeprecated": false,
1721
1787
  "deprecationReason": null
1722
- },
1788
+ }
1789
+ ],
1790
+ "inputFields": null,
1791
+ "interfaces": [
1792
+
1793
+ ],
1794
+ "enumValues": null,
1795
+ "possibleTypes": null
1796
+ },
1797
+ {
1798
+ "kind": "OBJECT",
1799
+ "name": "InformationRequest",
1800
+ "description": null,
1801
+ "fields": [
1723
1802
  {
1724
- "name": "savings",
1725
- "description": "The difference between the prePrice and the postPrice",
1726
- "args": [],
1803
+ "name": "content",
1804
+ "description": null,
1805
+ "args": [
1806
+
1807
+ ],
1727
1808
  "type": {
1728
1809
  "kind": "NON_NULL",
1729
1810
  "name": null,
1730
1811
  "ofType": {
1731
1812
  "kind": "SCALAR",
1732
- "name": "Money",
1813
+ "name": "String",
1733
1814
  "ofType": null
1734
1815
  }
1735
1816
  },
@@ -1737,15 +1818,17 @@
1737
1818
  "deprecationReason": null
1738
1819
  },
1739
1820
  {
1740
- "name": "savingsEndOn",
1741
- "description": "The date the discount/savings end",
1742
- "args": [],
1821
+ "name": "contentHtml",
1822
+ "description": null,
1823
+ "args": [
1824
+
1825
+ ],
1743
1826
  "type": {
1744
1827
  "kind": "NON_NULL",
1745
1828
  "name": null,
1746
1829
  "ofType": {
1747
1830
  "kind": "SCALAR",
1748
- "name": "DateTime",
1831
+ "name": "String",
1749
1832
  "ofType": null
1750
1833
  }
1751
1834
  },
@@ -1753,9 +1836,11 @@
1753
1836
  "deprecationReason": null
1754
1837
  },
1755
1838
  {
1756
- "name": "savingsStartOn",
1757
- "description": "The date the discount/savings start",
1758
- "args": [],
1839
+ "name": "createdAt",
1840
+ "description": null,
1841
+ "args": [
1842
+
1843
+ ],
1759
1844
  "type": {
1760
1845
  "kind": "NON_NULL",
1761
1846
  "name": null,
@@ -1769,25 +1854,69 @@
1769
1854
  "deprecationReason": null
1770
1855
  },
1771
1856
  {
1772
- "name": "underContract",
1773
- "description": "Indicates the item is under contract",
1774
- "args": [],
1857
+ "name": "fields",
1858
+ "description": null,
1859
+ "args": [
1860
+
1861
+ ],
1862
+ "type": {
1863
+ "kind": "NON_NULL",
1864
+ "name": null,
1865
+ "ofType": {
1866
+ "kind": "LIST",
1867
+ "name": null,
1868
+ "ofType": {
1869
+ "kind": "NON_NULL",
1870
+ "name": null,
1871
+ "ofType": {
1872
+ "kind": "OBJECT",
1873
+ "name": "InformationRequestField",
1874
+ "ofType": null
1875
+ }
1876
+ }
1877
+ }
1878
+ },
1879
+ "isDeprecated": false,
1880
+ "deprecationReason": null
1881
+ },
1882
+ {
1883
+ "name": "id",
1884
+ "description": null,
1885
+ "args": [
1886
+
1887
+ ],
1775
1888
  "type": {
1776
1889
  "kind": "NON_NULL",
1777
1890
  "name": null,
1778
1891
  "ofType": {
1779
1892
  "kind": "SCALAR",
1780
- "name": "Boolean",
1893
+ "name": "ID",
1781
1894
  "ofType": null
1782
1895
  }
1783
1896
  },
1784
1897
  "isDeprecated": false,
1785
1898
  "deprecationReason": null
1786
1899
  },
1900
+ {
1901
+ "name": "respondedAt",
1902
+ "description": null,
1903
+ "args": [
1904
+
1905
+ ],
1906
+ "type": {
1907
+ "kind": "SCALAR",
1908
+ "name": "DateTime",
1909
+ "ofType": null
1910
+ },
1911
+ "isDeprecated": false,
1912
+ "deprecationReason": null
1913
+ },
1787
1914
  {
1788
1915
  "name": "updatedAt",
1789
- "description": "The last time the record was updated",
1790
- "args": [],
1916
+ "description": null,
1917
+ "args": [
1918
+
1919
+ ],
1791
1920
  "type": {
1792
1921
  "kind": "NON_NULL",
1793
1922
  "name": null,
@@ -1802,190 +1931,1199 @@
1802
1931
  }
1803
1932
  ],
1804
1933
  "inputFields": null,
1805
- "interfaces": [],
1934
+ "interfaces": [
1935
+
1936
+ ],
1806
1937
  "enumValues": null,
1807
1938
  "possibleTypes": null
1808
1939
  },
1809
1940
  {
1810
- "kind": "SCALAR",
1811
- "name": "Money",
1812
- "description": "Represents money value",
1941
+ "kind": "INPUT_OBJECT",
1942
+ "name": "InformationRequestAttributes",
1943
+ "description": "Attributes for updating an information request",
1813
1944
  "fields": null,
1814
- "inputFields": null,
1945
+ "inputFields": [
1946
+ {
1947
+ "name": "fields",
1948
+ "description": null,
1949
+ "type": {
1950
+ "kind": "NON_NULL",
1951
+ "name": null,
1952
+ "ofType": {
1953
+ "kind": "LIST",
1954
+ "name": null,
1955
+ "ofType": {
1956
+ "kind": "NON_NULL",
1957
+ "name": null,
1958
+ "ofType": {
1959
+ "kind": "INPUT_OBJECT",
1960
+ "name": "InformationRequestFieldAttributes",
1961
+ "ofType": null
1962
+ }
1963
+ }
1964
+ }
1965
+ },
1966
+ "defaultValue": null
1967
+ }
1968
+ ],
1815
1969
  "interfaces": null,
1816
1970
  "enumValues": null,
1817
1971
  "possibleTypes": null
1818
1972
  },
1819
1973
  {
1820
1974
  "kind": "OBJECT",
1821
- "name": "Mutation",
1975
+ "name": "InformationRequestConnection",
1976
+ "description": "The connection type for InformationRequest.",
1977
+ "fields": [
1978
+ {
1979
+ "name": "edges",
1980
+ "description": "A list of edges.",
1981
+ "args": [
1982
+
1983
+ ],
1984
+ "type": {
1985
+ "kind": "NON_NULL",
1986
+ "name": null,
1987
+ "ofType": {
1988
+ "kind": "LIST",
1989
+ "name": null,
1990
+ "ofType": {
1991
+ "kind": "NON_NULL",
1992
+ "name": null,
1993
+ "ofType": {
1994
+ "kind": "OBJECT",
1995
+ "name": "InformationRequestEdge",
1996
+ "ofType": null
1997
+ }
1998
+ }
1999
+ }
2000
+ },
2001
+ "isDeprecated": false,
2002
+ "deprecationReason": null
2003
+ },
2004
+ {
2005
+ "name": "nodes",
2006
+ "description": "A list of nodes.",
2007
+ "args": [
2008
+
2009
+ ],
2010
+ "type": {
2011
+ "kind": "NON_NULL",
2012
+ "name": null,
2013
+ "ofType": {
2014
+ "kind": "LIST",
2015
+ "name": null,
2016
+ "ofType": {
2017
+ "kind": "NON_NULL",
2018
+ "name": null,
2019
+ "ofType": {
2020
+ "kind": "OBJECT",
2021
+ "name": "InformationRequest",
2022
+ "ofType": null
2023
+ }
2024
+ }
2025
+ }
2026
+ },
2027
+ "isDeprecated": false,
2028
+ "deprecationReason": null
2029
+ },
2030
+ {
2031
+ "name": "pageInfo",
2032
+ "description": "Information to aid in pagination.",
2033
+ "args": [
2034
+
2035
+ ],
2036
+ "type": {
2037
+ "kind": "NON_NULL",
2038
+ "name": null,
2039
+ "ofType": {
2040
+ "kind": "OBJECT",
2041
+ "name": "PageInfo",
2042
+ "ofType": null
2043
+ }
2044
+ },
2045
+ "isDeprecated": false,
2046
+ "deprecationReason": null
2047
+ },
2048
+ {
2049
+ "name": "totalCount",
2050
+ "description": null,
2051
+ "args": [
2052
+
2053
+ ],
2054
+ "type": {
2055
+ "kind": "NON_NULL",
2056
+ "name": null,
2057
+ "ofType": {
2058
+ "kind": "SCALAR",
2059
+ "name": "Int",
2060
+ "ofType": null
2061
+ }
2062
+ },
2063
+ "isDeprecated": false,
2064
+ "deprecationReason": null
2065
+ }
2066
+ ],
2067
+ "inputFields": null,
2068
+ "interfaces": [
2069
+
2070
+ ],
2071
+ "enumValues": null,
2072
+ "possibleTypes": null
2073
+ },
2074
+ {
2075
+ "kind": "OBJECT",
2076
+ "name": "InformationRequestEdge",
2077
+ "description": "An edge in a connection.",
2078
+ "fields": [
2079
+ {
2080
+ "name": "cursor",
2081
+ "description": "A cursor for use in pagination.",
2082
+ "args": [
2083
+
2084
+ ],
2085
+ "type": {
2086
+ "kind": "NON_NULL",
2087
+ "name": null,
2088
+ "ofType": {
2089
+ "kind": "SCALAR",
2090
+ "name": "String",
2091
+ "ofType": null
2092
+ }
2093
+ },
2094
+ "isDeprecated": false,
2095
+ "deprecationReason": null
2096
+ },
2097
+ {
2098
+ "name": "node",
2099
+ "description": "The item at the end of the edge.",
2100
+ "args": [
2101
+
2102
+ ],
2103
+ "type": {
2104
+ "kind": "OBJECT",
2105
+ "name": "InformationRequest",
2106
+ "ofType": null
2107
+ },
2108
+ "isDeprecated": false,
2109
+ "deprecationReason": null
2110
+ }
2111
+ ],
2112
+ "inputFields": null,
2113
+ "interfaces": [
2114
+
2115
+ ],
2116
+ "enumValues": null,
2117
+ "possibleTypes": null
2118
+ },
2119
+ {
2120
+ "kind": "OBJECT",
2121
+ "name": "InformationRequestField",
1822
2122
  "description": null,
1823
2123
  "fields": [
1824
2124
  {
1825
- "name": "AcceptOffer",
1826
- "description": "Accept an offer",
2125
+ "name": "createdAt",
2126
+ "description": null,
2127
+ "args": [
2128
+
2129
+ ],
2130
+ "type": {
2131
+ "kind": "NON_NULL",
2132
+ "name": null,
2133
+ "ofType": {
2134
+ "kind": "SCALAR",
2135
+ "name": "DateTime",
2136
+ "ofType": null
2137
+ }
2138
+ },
2139
+ "isDeprecated": false,
2140
+ "deprecationReason": null
2141
+ },
2142
+ {
2143
+ "name": "dataType",
2144
+ "description": null,
2145
+ "args": [
2146
+
2147
+ ],
2148
+ "type": {
2149
+ "kind": "NON_NULL",
2150
+ "name": null,
2151
+ "ofType": {
2152
+ "kind": "SCALAR",
2153
+ "name": "String",
2154
+ "ofType": null
2155
+ }
2156
+ },
2157
+ "isDeprecated": false,
2158
+ "deprecationReason": null
2159
+ },
2160
+ {
2161
+ "name": "id",
2162
+ "description": null,
2163
+ "args": [
2164
+
2165
+ ],
2166
+ "type": {
2167
+ "kind": "NON_NULL",
2168
+ "name": null,
2169
+ "ofType": {
2170
+ "kind": "SCALAR",
2171
+ "name": "ID",
2172
+ "ofType": null
2173
+ }
2174
+ },
2175
+ "isDeprecated": false,
2176
+ "deprecationReason": null
2177
+ },
2178
+ {
2179
+ "name": "label",
2180
+ "description": null,
2181
+ "args": [
2182
+
2183
+ ],
2184
+ "type": {
2185
+ "kind": "NON_NULL",
2186
+ "name": null,
2187
+ "ofType": {
2188
+ "kind": "SCALAR",
2189
+ "name": "String",
2190
+ "ofType": null
2191
+ }
2192
+ },
2193
+ "isDeprecated": false,
2194
+ "deprecationReason": null
2195
+ },
2196
+ {
2197
+ "name": "placeholder",
2198
+ "description": null,
2199
+ "args": [
2200
+
2201
+ ],
2202
+ "type": {
2203
+ "kind": "NON_NULL",
2204
+ "name": null,
2205
+ "ofType": {
2206
+ "kind": "SCALAR",
2207
+ "name": "String",
2208
+ "ofType": null
2209
+ }
2210
+ },
2211
+ "isDeprecated": false,
2212
+ "deprecationReason": null
2213
+ },
2214
+ {
2215
+ "name": "updatedAt",
2216
+ "description": null,
2217
+ "args": [
2218
+
2219
+ ],
2220
+ "type": {
2221
+ "kind": "NON_NULL",
2222
+ "name": null,
2223
+ "ofType": {
2224
+ "kind": "SCALAR",
2225
+ "name": "DateTime",
2226
+ "ofType": null
2227
+ }
2228
+ },
2229
+ "isDeprecated": false,
2230
+ "deprecationReason": null
2231
+ },
2232
+ {
2233
+ "name": "value",
2234
+ "description": null,
2235
+ "args": [
2236
+
2237
+ ],
2238
+ "type": {
2239
+ "kind": "SCALAR",
2240
+ "name": "String",
2241
+ "ofType": null
2242
+ },
2243
+ "isDeprecated": false,
2244
+ "deprecationReason": null
2245
+ }
2246
+ ],
2247
+ "inputFields": null,
2248
+ "interfaces": [
2249
+
2250
+ ],
2251
+ "enumValues": null,
2252
+ "possibleTypes": null
2253
+ },
2254
+ {
2255
+ "kind": "INPUT_OBJECT",
2256
+ "name": "InformationRequestFieldAttributes",
2257
+ "description": "Attributes for udpating information request fields",
2258
+ "fields": null,
2259
+ "inputFields": [
2260
+ {
2261
+ "name": "id",
2262
+ "description": null,
2263
+ "type": {
2264
+ "kind": "NON_NULL",
2265
+ "name": null,
2266
+ "ofType": {
2267
+ "kind": "SCALAR",
2268
+ "name": "ID",
2269
+ "ofType": null
2270
+ }
2271
+ },
2272
+ "defaultValue": null
2273
+ },
2274
+ {
2275
+ "name": "value",
2276
+ "description": null,
2277
+ "type": {
2278
+ "kind": "NON_NULL",
2279
+ "name": null,
2280
+ "ofType": {
2281
+ "kind": "SCALAR",
2282
+ "name": "String",
2283
+ "ofType": null
2284
+ }
2285
+ },
2286
+ "defaultValue": null
2287
+ }
2288
+ ],
2289
+ "interfaces": null,
2290
+ "enumValues": null,
2291
+ "possibleTypes": null
2292
+ },
2293
+ {
2294
+ "kind": "SCALAR",
2295
+ "name": "Int",
2296
+ "description": "Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",
2297
+ "fields": null,
2298
+ "inputFields": null,
2299
+ "interfaces": null,
2300
+ "enumValues": null,
2301
+ "possibleTypes": null
2302
+ },
2303
+ {
2304
+ "kind": "OBJECT",
2305
+ "name": "Item",
2306
+ "description": null,
2307
+ "fields": [
2308
+ {
2309
+ "name": "createdAt",
2310
+ "description": "The date the record was created",
2311
+ "args": [
2312
+
2313
+ ],
2314
+ "type": {
2315
+ "kind": "NON_NULL",
2316
+ "name": null,
2317
+ "ofType": {
2318
+ "kind": "SCALAR",
2319
+ "name": "DateTime",
2320
+ "ofType": null
2321
+ }
2322
+ },
2323
+ "isDeprecated": false,
2324
+ "deprecationReason": null
2325
+ },
2326
+ {
2327
+ "name": "duration",
2328
+ "description": "The length of time in months that an item's savings is good for",
2329
+ "args": [
2330
+
2331
+ ],
2332
+ "type": {
2333
+ "kind": "NON_NULL",
2334
+ "name": null,
2335
+ "ofType": {
2336
+ "kind": "SCALAR",
2337
+ "name": "Int",
2338
+ "ofType": null
2339
+ }
2340
+ },
2341
+ "isDeprecated": false,
2342
+ "deprecationReason": null
2343
+ },
2344
+ {
2345
+ "name": "name",
2346
+ "description": "Name of the good or service",
2347
+ "args": [
2348
+
2349
+ ],
2350
+ "type": {
2351
+ "kind": "NON_NULL",
2352
+ "name": null,
2353
+ "ofType": {
2354
+ "kind": "SCALAR",
2355
+ "name": "String",
2356
+ "ofType": null
2357
+ }
2358
+ },
2359
+ "isDeprecated": false,
2360
+ "deprecationReason": null
2361
+ },
2362
+ {
2363
+ "name": "postPrice",
2364
+ "description": "The post-negotiation price",
2365
+ "args": [
2366
+
2367
+ ],
2368
+ "type": {
2369
+ "kind": "NON_NULL",
2370
+ "name": null,
2371
+ "ofType": {
2372
+ "kind": "SCALAR",
2373
+ "name": "Money",
2374
+ "ofType": null
2375
+ }
2376
+ },
2377
+ "isDeprecated": false,
2378
+ "deprecationReason": null
2379
+ },
2380
+ {
2381
+ "name": "prePrice",
2382
+ "description": "The pre-negotiation price",
2383
+ "args": [
2384
+
2385
+ ],
2386
+ "type": {
2387
+ "kind": "NON_NULL",
2388
+ "name": null,
2389
+ "ofType": {
2390
+ "kind": "SCALAR",
2391
+ "name": "Money",
2392
+ "ofType": null
2393
+ }
2394
+ },
2395
+ "isDeprecated": false,
2396
+ "deprecationReason": null
2397
+ },
2398
+ {
2399
+ "name": "savings",
2400
+ "description": "The difference between the prePrice and the postPrice",
2401
+ "args": [
2402
+
2403
+ ],
2404
+ "type": {
2405
+ "kind": "NON_NULL",
2406
+ "name": null,
2407
+ "ofType": {
2408
+ "kind": "SCALAR",
2409
+ "name": "Money",
2410
+ "ofType": null
2411
+ }
2412
+ },
2413
+ "isDeprecated": false,
2414
+ "deprecationReason": null
2415
+ },
2416
+ {
2417
+ "name": "savingsEndOn",
2418
+ "description": "The date the discount/savings end",
2419
+ "args": [
2420
+
2421
+ ],
2422
+ "type": {
2423
+ "kind": "NON_NULL",
2424
+ "name": null,
2425
+ "ofType": {
2426
+ "kind": "SCALAR",
2427
+ "name": "DateTime",
2428
+ "ofType": null
2429
+ }
2430
+ },
2431
+ "isDeprecated": false,
2432
+ "deprecationReason": null
2433
+ },
2434
+ {
2435
+ "name": "savingsStartOn",
2436
+ "description": "The date the discount/savings start",
2437
+ "args": [
2438
+
2439
+ ],
2440
+ "type": {
2441
+ "kind": "NON_NULL",
2442
+ "name": null,
2443
+ "ofType": {
2444
+ "kind": "SCALAR",
2445
+ "name": "DateTime",
2446
+ "ofType": null
2447
+ }
2448
+ },
2449
+ "isDeprecated": false,
2450
+ "deprecationReason": null
2451
+ },
2452
+ {
2453
+ "name": "underContract",
2454
+ "description": "Indicates the item is under contract",
2455
+ "args": [
2456
+
2457
+ ],
2458
+ "type": {
2459
+ "kind": "NON_NULL",
2460
+ "name": null,
2461
+ "ofType": {
2462
+ "kind": "SCALAR",
2463
+ "name": "Boolean",
2464
+ "ofType": null
2465
+ }
2466
+ },
2467
+ "isDeprecated": false,
2468
+ "deprecationReason": null
2469
+ },
2470
+ {
2471
+ "name": "updatedAt",
2472
+ "description": "The last time the record was updated",
2473
+ "args": [
2474
+
2475
+ ],
2476
+ "type": {
2477
+ "kind": "NON_NULL",
2478
+ "name": null,
2479
+ "ofType": {
2480
+ "kind": "SCALAR",
2481
+ "name": "DateTime",
2482
+ "ofType": null
2483
+ }
2484
+ },
2485
+ "isDeprecated": false,
2486
+ "deprecationReason": null
2487
+ }
2488
+ ],
2489
+ "inputFields": null,
2490
+ "interfaces": [
2491
+
2492
+ ],
2493
+ "enumValues": null,
2494
+ "possibleTypes": null
2495
+ },
2496
+ {
2497
+ "kind": "SCALAR",
2498
+ "name": "Money",
2499
+ "description": "Represents money value",
2500
+ "fields": null,
2501
+ "inputFields": null,
2502
+ "interfaces": null,
2503
+ "enumValues": null,
2504
+ "possibleTypes": null
2505
+ },
2506
+ {
2507
+ "kind": "OBJECT",
2508
+ "name": "Mutation",
2509
+ "description": null,
2510
+ "fields": [
2511
+ {
2512
+ "name": "AcceptOffer",
2513
+ "description": "Accept an offer",
2514
+ "args": [
2515
+ {
2516
+ "name": "input",
2517
+ "description": null,
2518
+ "type": {
2519
+ "kind": "NON_NULL",
2520
+ "name": null,
2521
+ "ofType": {
2522
+ "kind": "INPUT_OBJECT",
2523
+ "name": "AcceptOfferInput",
2524
+ "ofType": null
2525
+ }
2526
+ },
2527
+ "defaultValue": null
2528
+ }
2529
+ ],
2530
+ "type": {
2531
+ "kind": "OBJECT",
2532
+ "name": "AcceptOfferPayload",
2533
+ "ofType": null
2534
+ },
2535
+ "isDeprecated": false,
2536
+ "deprecationReason": null
2537
+ },
2538
+ {
2539
+ "name": "CancelBill",
2540
+ "description": null,
2541
+ "args": [
2542
+ {
2543
+ "name": "input",
2544
+ "description": null,
2545
+ "type": {
2546
+ "kind": "NON_NULL",
2547
+ "name": null,
2548
+ "ofType": {
2549
+ "kind": "INPUT_OBJECT",
2550
+ "name": "CancelBillInput",
2551
+ "ofType": null
2552
+ }
2553
+ },
2554
+ "defaultValue": null
2555
+ }
2556
+ ],
2557
+ "type": {
2558
+ "kind": "OBJECT",
2559
+ "name": "CancelBillPayload",
2560
+ "ofType": null
2561
+ },
2562
+ "isDeprecated": false,
2563
+ "deprecationReason": null
2564
+ },
2565
+ {
2566
+ "name": "CreateBill",
2567
+ "description": null,
2568
+ "args": [
2569
+ {
2570
+ "name": "input",
2571
+ "description": null,
2572
+ "type": {
2573
+ "kind": "NON_NULL",
2574
+ "name": null,
2575
+ "ofType": {
2576
+ "kind": "INPUT_OBJECT",
2577
+ "name": "CreateBillInput",
2578
+ "ofType": null
2579
+ }
2580
+ },
2581
+ "defaultValue": null
2582
+ }
2583
+ ],
2584
+ "type": {
2585
+ "kind": "OBJECT",
2586
+ "name": "CreateBillPayload",
2587
+ "ofType": null
2588
+ },
2589
+ "isDeprecated": false,
2590
+ "deprecationReason": null
2591
+ },
2592
+ {
2593
+ "name": "CreateCustomer",
2594
+ "description": null,
2595
+ "args": [
2596
+ {
2597
+ "name": "input",
2598
+ "description": null,
2599
+ "type": {
2600
+ "kind": "NON_NULL",
2601
+ "name": null,
2602
+ "ofType": {
2603
+ "kind": "INPUT_OBJECT",
2604
+ "name": "CreateCustomerInput",
2605
+ "ofType": null
2606
+ }
2607
+ },
2608
+ "defaultValue": null
2609
+ }
2610
+ ],
2611
+ "type": {
2612
+ "kind": "OBJECT",
2613
+ "name": "CreateCustomerPayload",
2614
+ "ofType": null
2615
+ },
2616
+ "isDeprecated": false,
2617
+ "deprecationReason": null
2618
+ },
2619
+ {
2620
+ "name": "RejectOffer",
2621
+ "description": "Reject an offer",
2622
+ "args": [
2623
+ {
2624
+ "name": "input",
2625
+ "description": null,
2626
+ "type": {
2627
+ "kind": "NON_NULL",
2628
+ "name": null,
2629
+ "ofType": {
2630
+ "kind": "INPUT_OBJECT",
2631
+ "name": "RejectOfferInput",
2632
+ "ofType": null
2633
+ }
2634
+ },
2635
+ "defaultValue": null
2636
+ }
2637
+ ],
2638
+ "type": {
2639
+ "kind": "OBJECT",
2640
+ "name": "RejectOfferPayload",
2641
+ "ofType": null
2642
+ },
2643
+ "isDeprecated": false,
2644
+ "deprecationReason": null
2645
+ },
2646
+ {
2647
+ "name": "RespondToInformationRequest",
2648
+ "description": null,
2649
+ "args": [
2650
+ {
2651
+ "name": "input",
2652
+ "description": null,
2653
+ "type": {
2654
+ "kind": "NON_NULL",
2655
+ "name": null,
2656
+ "ofType": {
2657
+ "kind": "INPUT_OBJECT",
2658
+ "name": "RespondToInformationRequestInput",
2659
+ "ofType": null
2660
+ }
2661
+ },
2662
+ "defaultValue": null
2663
+ }
2664
+ ],
2665
+ "type": {
2666
+ "kind": "OBJECT",
2667
+ "name": "RespondToInformationRequestPayload",
2668
+ "ofType": null
2669
+ },
2670
+ "isDeprecated": false,
2671
+ "deprecationReason": null
2672
+ },
2673
+ {
2674
+ "name": "UpdateCustomer",
2675
+ "description": null,
2676
+ "args": [
2677
+ {
2678
+ "name": "input",
2679
+ "description": null,
2680
+ "type": {
2681
+ "kind": "NON_NULL",
2682
+ "name": null,
2683
+ "ofType": {
2684
+ "kind": "INPUT_OBJECT",
2685
+ "name": "UpdateCustomerInput",
2686
+ "ofType": null
2687
+ }
2688
+ },
2689
+ "defaultValue": null
2690
+ }
2691
+ ],
2692
+ "type": {
2693
+ "kind": "OBJECT",
2694
+ "name": "UpdateCustomerPayload",
2695
+ "ofType": null
2696
+ },
2697
+ "isDeprecated": false,
2698
+ "deprecationReason": null
2699
+ },
2700
+ {
2701
+ "name": "UpdateWebhookUrls",
2702
+ "description": null,
2703
+ "args": [
2704
+ {
2705
+ "name": "input",
2706
+ "description": null,
2707
+ "type": {
2708
+ "kind": "NON_NULL",
2709
+ "name": null,
2710
+ "ofType": {
2711
+ "kind": "INPUT_OBJECT",
2712
+ "name": "UpdateWebhookUrlsInput",
2713
+ "ofType": null
2714
+ }
2715
+ },
2716
+ "defaultValue": null
2717
+ }
2718
+ ],
2719
+ "type": {
2720
+ "kind": "OBJECT",
2721
+ "name": "UpdateWebhookUrlsPayload",
2722
+ "ofType": null
2723
+ },
2724
+ "isDeprecated": false,
2725
+ "deprecationReason": null
2726
+ }
2727
+ ],
2728
+ "inputFields": null,
2729
+ "interfaces": [
2730
+
2731
+ ],
2732
+ "enumValues": null,
2733
+ "possibleTypes": null
2734
+ },
2735
+ {
2736
+ "kind": "OBJECT",
2737
+ "name": "Negotiation",
2738
+ "description": null,
2739
+ "fields": [
2740
+ {
2741
+ "name": "billId",
2742
+ "description": null,
2743
+ "args": [
2744
+
2745
+ ],
2746
+ "type": {
2747
+ "kind": "NON_NULL",
2748
+ "name": null,
2749
+ "ofType": {
2750
+ "kind": "SCALAR",
2751
+ "name": "ID",
2752
+ "ofType": null
2753
+ }
2754
+ },
2755
+ "isDeprecated": false,
2756
+ "deprecationReason": null
2757
+ },
2758
+ {
2759
+ "name": "cancelledAt",
2760
+ "description": null,
2761
+ "args": [
2762
+
2763
+ ],
2764
+ "type": {
2765
+ "kind": "SCALAR",
2766
+ "name": "DateTime",
2767
+ "ofType": null
2768
+ },
2769
+ "isDeprecated": false,
2770
+ "deprecationReason": null
2771
+ },
2772
+ {
2773
+ "name": "compedAt",
2774
+ "description": null,
2775
+ "args": [
2776
+
2777
+ ],
2778
+ "type": {
2779
+ "kind": "SCALAR",
2780
+ "name": "DateTime",
2781
+ "ofType": null
2782
+ },
2783
+ "isDeprecated": false,
2784
+ "deprecationReason": null
2785
+ },
2786
+ {
2787
+ "name": "createdAt",
2788
+ "description": null,
2789
+ "args": [
2790
+
2791
+ ],
2792
+ "type": {
2793
+ "kind": "NON_NULL",
2794
+ "name": null,
2795
+ "ofType": {
2796
+ "kind": "SCALAR",
2797
+ "name": "DateTime",
2798
+ "ofType": null
2799
+ }
2800
+ },
2801
+ "isDeprecated": false,
2802
+ "deprecationReason": null
2803
+ },
2804
+ {
2805
+ "name": "deletedAt",
2806
+ "description": null,
2807
+ "args": [
2808
+
2809
+ ],
2810
+ "type": {
2811
+ "kind": "SCALAR",
2812
+ "name": "DateTime",
2813
+ "ofType": null
2814
+ },
2815
+ "isDeprecated": false,
2816
+ "deprecationReason": null
2817
+ },
2818
+ {
2819
+ "name": "failedAt",
2820
+ "description": null,
2821
+ "args": [
2822
+
2823
+ ],
2824
+ "type": {
2825
+ "kind": "SCALAR",
2826
+ "name": "DateTime",
2827
+ "ofType": null
2828
+ },
2829
+ "isDeprecated": false,
2830
+ "deprecationReason": null
2831
+ },
2832
+ {
2833
+ "name": "fixedAt",
2834
+ "description": null,
1827
2835
  "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
- }
2836
+
1842
2837
  ],
1843
2838
  "type": {
1844
- "kind": "OBJECT",
1845
- "name": "AcceptOfferPayload",
2839
+ "kind": "SCALAR",
2840
+ "name": "DateTime",
1846
2841
  "ofType": null
1847
2842
  },
1848
2843
  "isDeprecated": false,
1849
2844
  "deprecationReason": null
1850
2845
  },
1851
2846
  {
1852
- "name": "CancelBill",
2847
+ "name": "fixerIds",
1853
2848
  "description": null,
1854
2849
  "args": [
1855
- {
1856
- "name": "input",
1857
- "description": null,
1858
- "type": {
2850
+
2851
+ ],
2852
+ "type": {
2853
+ "kind": "NON_NULL",
2854
+ "name": null,
2855
+ "ofType": {
2856
+ "kind": "LIST",
2857
+ "name": null,
2858
+ "ofType": {
1859
2859
  "kind": "NON_NULL",
1860
2860
  "name": null,
1861
2861
  "ofType": {
1862
- "kind": "INPUT_OBJECT",
1863
- "name": "CancelBillInput",
2862
+ "kind": "SCALAR",
2863
+ "name": "ID",
1864
2864
  "ofType": null
1865
2865
  }
1866
- },
1867
- "defaultValue": null
2866
+ }
1868
2867
  }
1869
- ],
1870
- "type": {
1871
- "kind": "OBJECT",
1872
- "name": "CancelBillPayload",
1873
- "ofType": null
1874
2868
  },
1875
2869
  "isDeprecated": false,
1876
2870
  "deprecationReason": null
1877
2871
  },
1878
2872
  {
1879
- "name": "CreateBill",
2873
+ "name": "fixers",
1880
2874
  "description": null,
1881
2875
  "args": [
1882
- {
1883
- "name": "input",
1884
- "description": null,
1885
- "type": {
2876
+
2877
+ ],
2878
+ "type": {
2879
+ "kind": "NON_NULL",
2880
+ "name": null,
2881
+ "ofType": {
2882
+ "kind": "LIST",
2883
+ "name": null,
2884
+ "ofType": {
1886
2885
  "kind": "NON_NULL",
1887
2886
  "name": null,
1888
2887
  "ofType": {
1889
- "kind": "INPUT_OBJECT",
1890
- "name": "CreateBillInput",
2888
+ "kind": "OBJECT",
2889
+ "name": "Fixer",
1891
2890
  "ofType": null
1892
2891
  }
1893
- },
1894
- "defaultValue": null
2892
+ }
1895
2893
  }
2894
+ },
2895
+ "isDeprecated": false,
2896
+ "deprecationReason": null
2897
+ },
2898
+ {
2899
+ "name": "id",
2900
+ "description": null,
2901
+ "args": [
2902
+
1896
2903
  ],
1897
2904
  "type": {
1898
- "kind": "OBJECT",
1899
- "name": "CreateBillPayload",
1900
- "ofType": null
2905
+ "kind": "NON_NULL",
2906
+ "name": null,
2907
+ "ofType": {
2908
+ "kind": "SCALAR",
2909
+ "name": "ID",
2910
+ "ofType": null
2911
+ }
1901
2912
  },
1902
2913
  "isDeprecated": false,
1903
2914
  "deprecationReason": null
1904
2915
  },
1905
2916
  {
1906
- "name": "CreateCustomer",
2917
+ "name": "informationRequests",
1907
2918
  "description": null,
1908
2919
  "args": [
1909
- {
1910
- "name": "input",
1911
- "description": null,
1912
- "type": {
2920
+
2921
+ ],
2922
+ "type": {
2923
+ "kind": "NON_NULL",
2924
+ "name": null,
2925
+ "ofType": {
2926
+ "kind": "LIST",
2927
+ "name": null,
2928
+ "ofType": {
1913
2929
  "kind": "NON_NULL",
1914
2930
  "name": null,
1915
2931
  "ofType": {
1916
- "kind": "INPUT_OBJECT",
1917
- "name": "CreateCustomerInput",
2932
+ "kind": "OBJECT",
2933
+ "name": "InformationRequest",
1918
2934
  "ofType": null
1919
2935
  }
1920
- },
1921
- "defaultValue": null
2936
+ }
1922
2937
  }
2938
+ },
2939
+ "isDeprecated": false,
2940
+ "deprecationReason": null
2941
+ },
2942
+ {
2943
+ "name": "invoicedAt",
2944
+ "description": null,
2945
+ "args": [
2946
+
1923
2947
  ],
1924
2948
  "type": {
1925
- "kind": "OBJECT",
1926
- "name": "CreateCustomerPayload",
2949
+ "kind": "SCALAR",
2950
+ "name": "DateTime",
1927
2951
  "ofType": null
1928
2952
  },
1929
2953
  "isDeprecated": false,
1930
2954
  "deprecationReason": null
1931
2955
  },
1932
2956
  {
1933
- "name": "RejectOffer",
1934
- "description": "Reject an offer",
2957
+ "name": "items",
2958
+ "description": null,
1935
2959
  "args": [
1936
- {
1937
- "name": "input",
1938
- "description": null,
1939
- "type": {
2960
+
2961
+ ],
2962
+ "type": {
2963
+ "kind": "NON_NULL",
2964
+ "name": null,
2965
+ "ofType": {
2966
+ "kind": "LIST",
2967
+ "name": null,
2968
+ "ofType": {
1940
2969
  "kind": "NON_NULL",
1941
2970
  "name": null,
1942
2971
  "ofType": {
1943
- "kind": "INPUT_OBJECT",
1944
- "name": "RejectOfferInput",
2972
+ "kind": "OBJECT",
2973
+ "name": "Item",
1945
2974
  "ofType": null
1946
2975
  }
1947
- },
1948
- "defaultValue": null
2976
+ }
1949
2977
  }
2978
+ },
2979
+ "isDeprecated": false,
2980
+ "deprecationReason": null
2981
+ },
2982
+ {
2983
+ "name": "negotiationNumber",
2984
+ "description": null,
2985
+ "args": [
2986
+
1950
2987
  ],
1951
2988
  "type": {
1952
- "kind": "OBJECT",
1953
- "name": "RejectOfferPayload",
2989
+ "kind": "NON_NULL",
2990
+ "name": null,
2991
+ "ofType": {
2992
+ "kind": "SCALAR",
2993
+ "name": "Int",
2994
+ "ofType": null
2995
+ }
2996
+ },
2997
+ "isDeprecated": false,
2998
+ "deprecationReason": null
2999
+ },
3000
+ {
3001
+ "name": "requestedConsentAt",
3002
+ "description": null,
3003
+ "args": [
3004
+
3005
+ ],
3006
+ "type": {
3007
+ "kind": "SCALAR",
3008
+ "name": "DateTime",
1954
3009
  "ofType": null
1955
3010
  },
1956
3011
  "isDeprecated": false,
1957
3012
  "deprecationReason": null
1958
3013
  },
1959
3014
  {
1960
- "name": "UpdateCustomer",
3015
+ "name": "requestedInformationAt",
1961
3016
  "description": null,
1962
3017
  "args": [
1963
- {
1964
- "name": "input",
1965
- "description": null,
1966
- "type": {
3018
+
3019
+ ],
3020
+ "type": {
3021
+ "kind": "SCALAR",
3022
+ "name": "DateTime",
3023
+ "ofType": null
3024
+ },
3025
+ "isDeprecated": false,
3026
+ "deprecationReason": null
3027
+ },
3028
+ {
3029
+ "name": "startedAt",
3030
+ "description": null,
3031
+ "args": [
3032
+
3033
+ ],
3034
+ "type": {
3035
+ "kind": "SCALAR",
3036
+ "name": "DateTime",
3037
+ "ofType": null
3038
+ },
3039
+ "isDeprecated": false,
3040
+ "deprecationReason": null
3041
+ },
3042
+ {
3043
+ "name": "state",
3044
+ "description": null,
3045
+ "args": [
3046
+
3047
+ ],
3048
+ "type": {
3049
+ "kind": "NON_NULL",
3050
+ "name": null,
3051
+ "ofType": {
3052
+ "kind": "SCALAR",
3053
+ "name": "String",
3054
+ "ofType": null
3055
+ }
3056
+ },
3057
+ "isDeprecated": false,
3058
+ "deprecationReason": null
3059
+ },
3060
+ {
3061
+ "name": "tags",
3062
+ "description": null,
3063
+ "args": [
3064
+
3065
+ ],
3066
+ "type": {
3067
+ "kind": "NON_NULL",
3068
+ "name": null,
3069
+ "ofType": {
3070
+ "kind": "LIST",
3071
+ "name": null,
3072
+ "ofType": {
1967
3073
  "kind": "NON_NULL",
1968
3074
  "name": null,
1969
3075
  "ofType": {
1970
- "kind": "INPUT_OBJECT",
1971
- "name": "UpdateCustomerInput",
3076
+ "kind": "SCALAR",
3077
+ "name": "String",
1972
3078
  "ofType": null
1973
3079
  }
1974
- },
1975
- "defaultValue": null
3080
+ }
1976
3081
  }
3082
+ },
3083
+ "isDeprecated": false,
3084
+ "deprecationReason": null
3085
+ },
3086
+ {
3087
+ "name": "totalSavings",
3088
+ "description": null,
3089
+ "args": [
3090
+
1977
3091
  ],
1978
3092
  "type": {
1979
- "kind": "OBJECT",
1980
- "name": "UpdateCustomerPayload",
1981
- "ofType": null
3093
+ "kind": "NON_NULL",
3094
+ "name": null,
3095
+ "ofType": {
3096
+ "kind": "SCALAR",
3097
+ "name": "Money",
3098
+ "ofType": null
3099
+ }
3100
+ },
3101
+ "isDeprecated": false,
3102
+ "deprecationReason": null
3103
+ },
3104
+ {
3105
+ "name": "updatedAt",
3106
+ "description": null,
3107
+ "args": [
3108
+
3109
+ ],
3110
+ "type": {
3111
+ "kind": "NON_NULL",
3112
+ "name": null,
3113
+ "ofType": {
3114
+ "kind": "SCALAR",
3115
+ "name": "DateTime",
3116
+ "ofType": null
3117
+ }
1982
3118
  },
1983
3119
  "isDeprecated": false,
1984
3120
  "deprecationReason": null
1985
3121
  }
1986
3122
  ],
1987
3123
  "inputFields": null,
1988
- "interfaces": [],
3124
+ "interfaces": [
3125
+
3126
+ ],
1989
3127
  "enumValues": null,
1990
3128
  "possibleTypes": null
1991
3129
  },
@@ -1997,7 +3135,9 @@
1997
3135
  {
1998
3136
  "name": "acceptedAt",
1999
3137
  "description": null,
2000
- "args": [],
3138
+ "args": [
3139
+
3140
+ ],
2001
3141
  "type": {
2002
3142
  "kind": "SCALAR",
2003
3143
  "name": "DateTime",
@@ -2009,7 +3149,9 @@
2009
3149
  {
2010
3150
  "name": "bill",
2011
3151
  "description": null,
2012
- "args": [],
3152
+ "args": [
3153
+
3154
+ ],
2013
3155
  "type": {
2014
3156
  "kind": "NON_NULL",
2015
3157
  "name": null,
@@ -2025,7 +3167,9 @@
2025
3167
  {
2026
3168
  "name": "content",
2027
3169
  "description": null,
2028
- "args": [],
3170
+ "args": [
3171
+
3172
+ ],
2029
3173
  "type": {
2030
3174
  "kind": "NON_NULL",
2031
3175
  "name": null,
@@ -2041,7 +3185,9 @@
2041
3185
  {
2042
3186
  "name": "contentHtml",
2043
3187
  "description": null,
2044
- "args": [],
3188
+ "args": [
3189
+
3190
+ ],
2045
3191
  "type": {
2046
3192
  "kind": "NON_NULL",
2047
3193
  "name": null,
@@ -2057,7 +3203,9 @@
2057
3203
  {
2058
3204
  "name": "createdAt",
2059
3205
  "description": null,
2060
- "args": [],
3206
+ "args": [
3207
+
3208
+ ],
2061
3209
  "type": {
2062
3210
  "kind": "NON_NULL",
2063
3211
  "name": null,
@@ -2073,7 +3221,9 @@
2073
3221
  {
2074
3222
  "name": "customer",
2075
3223
  "description": null,
2076
- "args": [],
3224
+ "args": [
3225
+
3226
+ ],
2077
3227
  "type": {
2078
3228
  "kind": "NON_NULL",
2079
3229
  "name": null,
@@ -2089,7 +3239,9 @@
2089
3239
  {
2090
3240
  "name": "id",
2091
3241
  "description": "Alpha-numeric unique identifier",
2092
- "args": [],
3242
+ "args": [
3243
+
3244
+ ],
2093
3245
  "type": {
2094
3246
  "kind": "NON_NULL",
2095
3247
  "name": null,
@@ -2105,7 +3257,9 @@
2105
3257
  {
2106
3258
  "name": "rejectedAt",
2107
3259
  "description": null,
2108
- "args": [],
3260
+ "args": [
3261
+
3262
+ ],
2109
3263
  "type": {
2110
3264
  "kind": "SCALAR",
2111
3265
  "name": "DateTime",
@@ -2117,7 +3271,9 @@
2117
3271
  {
2118
3272
  "name": "status",
2119
3273
  "description": null,
2120
- "args": [],
3274
+ "args": [
3275
+
3276
+ ],
2121
3277
  "type": {
2122
3278
  "kind": "NON_NULL",
2123
3279
  "name": null,
@@ -2133,7 +3289,9 @@
2133
3289
  {
2134
3290
  "name": "updatedAt",
2135
3291
  "description": null,
2136
- "args": [],
3292
+ "args": [
3293
+
3294
+ ],
2137
3295
  "type": {
2138
3296
  "kind": "NON_NULL",
2139
3297
  "name": null,
@@ -2148,7 +3306,9 @@
2148
3306
  }
2149
3307
  ],
2150
3308
  "inputFields": null,
2151
- "interfaces": [],
3309
+ "interfaces": [
3310
+
3311
+ ],
2152
3312
  "enumValues": null,
2153
3313
  "possibleTypes": null
2154
3314
  },
@@ -2160,7 +3320,9 @@
2160
3320
  {
2161
3321
  "name": "edges",
2162
3322
  "description": "A list of edges.",
2163
- "args": [],
3323
+ "args": [
3324
+
3325
+ ],
2164
3326
  "type": {
2165
3327
  "kind": "NON_NULL",
2166
3328
  "name": null,
@@ -2184,7 +3346,9 @@
2184
3346
  {
2185
3347
  "name": "nodes",
2186
3348
  "description": "A list of nodes.",
2187
- "args": [],
3349
+ "args": [
3350
+
3351
+ ],
2188
3352
  "type": {
2189
3353
  "kind": "NON_NULL",
2190
3354
  "name": null,
@@ -2208,7 +3372,9 @@
2208
3372
  {
2209
3373
  "name": "pageInfo",
2210
3374
  "description": "Information to aid in pagination.",
2211
- "args": [],
3375
+ "args": [
3376
+
3377
+ ],
2212
3378
  "type": {
2213
3379
  "kind": "NON_NULL",
2214
3380
  "name": null,
@@ -2224,7 +3390,9 @@
2224
3390
  {
2225
3391
  "name": "totalCount",
2226
3392
  "description": null,
2227
- "args": [],
3393
+ "args": [
3394
+
3395
+ ],
2228
3396
  "type": {
2229
3397
  "kind": "NON_NULL",
2230
3398
  "name": null,
@@ -2239,7 +3407,9 @@
2239
3407
  }
2240
3408
  ],
2241
3409
  "inputFields": null,
2242
- "interfaces": [],
3410
+ "interfaces": [
3411
+
3412
+ ],
2243
3413
  "enumValues": null,
2244
3414
  "possibleTypes": null
2245
3415
  },
@@ -2251,7 +3421,9 @@
2251
3421
  {
2252
3422
  "name": "cursor",
2253
3423
  "description": "A cursor for use in pagination.",
2254
- "args": [],
3424
+ "args": [
3425
+
3426
+ ],
2255
3427
  "type": {
2256
3428
  "kind": "NON_NULL",
2257
3429
  "name": null,
@@ -2267,7 +3439,9 @@
2267
3439
  {
2268
3440
  "name": "node",
2269
3441
  "description": "The item at the end of the edge.",
2270
- "args": [],
3442
+ "args": [
3443
+
3444
+ ],
2271
3445
  "type": {
2272
3446
  "kind": "OBJECT",
2273
3447
  "name": "Offer",
@@ -2278,7 +3452,9 @@
2278
3452
  }
2279
3453
  ],
2280
3454
  "inputFields": null,
2281
- "interfaces": [],
3455
+ "interfaces": [
3456
+
3457
+ ],
2282
3458
  "enumValues": null,
2283
3459
  "possibleTypes": null
2284
3460
  },
@@ -2290,7 +3466,9 @@
2290
3466
  {
2291
3467
  "name": "endCursor",
2292
3468
  "description": "When paginating forwards, the cursor to continue.",
2293
- "args": [],
3469
+ "args": [
3470
+
3471
+ ],
2294
3472
  "type": {
2295
3473
  "kind": "SCALAR",
2296
3474
  "name": "String",
@@ -2302,7 +3480,9 @@
2302
3480
  {
2303
3481
  "name": "hasNextPage",
2304
3482
  "description": "When paginating forwards, are there more items?",
2305
- "args": [],
3483
+ "args": [
3484
+
3485
+ ],
2306
3486
  "type": {
2307
3487
  "kind": "NON_NULL",
2308
3488
  "name": null,
@@ -2318,7 +3498,9 @@
2318
3498
  {
2319
3499
  "name": "hasPreviousPage",
2320
3500
  "description": "When paginating backwards, are there more items?",
2321
- "args": [],
3501
+ "args": [
3502
+
3503
+ ],
2322
3504
  "type": {
2323
3505
  "kind": "NON_NULL",
2324
3506
  "name": null,
@@ -2334,7 +3516,86 @@
2334
3516
  {
2335
3517
  "name": "startCursor",
2336
3518
  "description": "When paginating backwards, the cursor to continue.",
2337
- "args": [],
3519
+ "args": [
3520
+
3521
+ ],
3522
+ "type": {
3523
+ "kind": "SCALAR",
3524
+ "name": "String",
3525
+ "ofType": null
3526
+ },
3527
+ "isDeprecated": false,
3528
+ "deprecationReason": null
3529
+ }
3530
+ ],
3531
+ "inputFields": null,
3532
+ "interfaces": [
3533
+
3534
+ ],
3535
+ "enumValues": null,
3536
+ "possibleTypes": null
3537
+ },
3538
+ {
3539
+ "kind": "OBJECT",
3540
+ "name": "Partner",
3541
+ "description": null,
3542
+ "fields": [
3543
+ {
3544
+ "name": "createdAt",
3545
+ "description": null,
3546
+ "args": [
3547
+
3548
+ ],
3549
+ "type": {
3550
+ "kind": "NON_NULL",
3551
+ "name": null,
3552
+ "ofType": {
3553
+ "kind": "SCALAR",
3554
+ "name": "DateTime",
3555
+ "ofType": null
3556
+ }
3557
+ },
3558
+ "isDeprecated": false,
3559
+ "deprecationReason": null
3560
+ },
3561
+ {
3562
+ "name": "id",
3563
+ "description": "Alpha-numeric unique identifier",
3564
+ "args": [
3565
+
3566
+ ],
3567
+ "type": {
3568
+ "kind": "NON_NULL",
3569
+ "name": null,
3570
+ "ofType": {
3571
+ "kind": "SCALAR",
3572
+ "name": "String",
3573
+ "ofType": null
3574
+ }
3575
+ },
3576
+ "isDeprecated": false,
3577
+ "deprecationReason": null
3578
+ },
3579
+ {
3580
+ "name": "liveWebhookUrl",
3581
+ "description": "Webhook URL for live/production requests",
3582
+ "args": [
3583
+
3584
+ ],
3585
+ "type": {
3586
+ "kind": "SCALAR",
3587
+ "name": "String",
3588
+ "ofType": null
3589
+ },
3590
+ "isDeprecated": false,
3591
+ "deprecationReason": null
3592
+ },
3593
+ {
3594
+ "name": "testWebhookUrl",
3595
+ "description": "Webhook URL for test/development requests",
3596
+ "args": [
3597
+
3598
+ ],
2338
3599
  "type": {
2339
3600
  "kind": "SCALAR",
2340
3601
  "name": "String",
@@ -2342,10 +3603,30 @@
2342
3603
  },
2343
3604
  "isDeprecated": false,
2344
3605
  "deprecationReason": null
3606
+ },
3607
+ {
3608
+ "name": "updatedAt",
3609
+ "description": null,
3610
+ "args": [
3611
+
3612
+ ],
3613
+ "type": {
3614
+ "kind": "NON_NULL",
3615
+ "name": null,
3616
+ "ofType": {
3617
+ "kind": "SCALAR",
3618
+ "name": "DateTime",
3619
+ "ofType": null
3620
+ }
3621
+ },
3622
+ "isDeprecated": false,
3623
+ "deprecationReason": null
2345
3624
  }
2346
3625
  ],
2347
3626
  "inputFields": null,
2348
- "interfaces": [],
3627
+ "interfaces": [
3628
+
3629
+ ],
2349
3630
  "enumValues": null,
2350
3631
  "possibleTypes": null
2351
3632
  },
@@ -2354,10 +3635,38 @@
2354
3635
  "name": "Provider",
2355
3636
  "description": null,
2356
3637
  "fields": [
3638
+ {
3639
+ "name": "billFields",
3640
+ "description": null,
3641
+ "args": [
3642
+
3643
+ ],
3644
+ "type": {
3645
+ "kind": "NON_NULL",
3646
+ "name": null,
3647
+ "ofType": {
3648
+ "kind": "LIST",
3649
+ "name": null,
3650
+ "ofType": {
3651
+ "kind": "NON_NULL",
3652
+ "name": null,
3653
+ "ofType": {
3654
+ "kind": "SCALAR",
3655
+ "name": "String",
3656
+ "ofType": null
3657
+ }
3658
+ }
3659
+ }
3660
+ },
3661
+ "isDeprecated": false,
3662
+ "deprecationReason": null
3663
+ },
2357
3664
  {
2358
3665
  "name": "createdAt",
2359
3666
  "description": null,
2360
- "args": [],
3667
+ "args": [
3668
+
3669
+ ],
2361
3670
  "type": {
2362
3671
  "kind": "NON_NULL",
2363
3672
  "name": null,
@@ -2373,7 +3682,9 @@
2373
3682
  {
2374
3683
  "name": "id",
2375
3684
  "description": null,
2376
- "args": [],
3685
+ "args": [
3686
+
3687
+ ],
2377
3688
  "type": {
2378
3689
  "kind": "NON_NULL",
2379
3690
  "name": null,
@@ -2389,7 +3700,9 @@
2389
3700
  {
2390
3701
  "name": "logo",
2391
3702
  "description": null,
2392
- "args": [],
3703
+ "args": [
3704
+
3705
+ ],
2393
3706
  "type": {
2394
3707
  "kind": "OBJECT",
2395
3708
  "name": "Image",
@@ -2401,7 +3714,9 @@
2401
3714
  {
2402
3715
  "name": "name",
2403
3716
  "description": null,
2404
- "args": [],
3717
+ "args": [
3718
+
3719
+ ],
2405
3720
  "type": {
2406
3721
  "kind": "NON_NULL",
2407
3722
  "name": null,
@@ -2417,7 +3732,9 @@
2417
3732
  {
2418
3733
  "name": "services",
2419
3734
  "description": null,
2420
- "args": [],
3735
+ "args": [
3736
+
3737
+ ],
2421
3738
  "type": {
2422
3739
  "kind": "NON_NULL",
2423
3740
  "name": null,
@@ -2432,41 +3749,117 @@
2432
3749
  "name": "String",
2433
3750
  "ofType": null
2434
3751
  }
2435
- }
3752
+ }
3753
+ }
3754
+ },
3755
+ "isDeprecated": false,
3756
+ "deprecationReason": null
3757
+ },
3758
+ {
3759
+ "name": "updatedAt",
3760
+ "description": null,
3761
+ "args": [
3762
+
3763
+ ],
3764
+ "type": {
3765
+ "kind": "NON_NULL",
3766
+ "name": null,
3767
+ "ofType": {
3768
+ "kind": "SCALAR",
3769
+ "name": "DateTime",
3770
+ "ofType": null
3771
+ }
3772
+ },
3773
+ "isDeprecated": false,
3774
+ "deprecationReason": null
3775
+ }
3776
+ ],
3777
+ "inputFields": null,
3778
+ "interfaces": [
3779
+
3780
+ ],
3781
+ "enumValues": null,
3782
+ "possibleTypes": null
3783
+ },
3784
+ {
3785
+ "kind": "OBJECT",
3786
+ "name": "Query",
3787
+ "description": null,
3788
+ "fields": [
3789
+ {
3790
+ "name": "FindBill",
3791
+ "description": null,
3792
+ "args": [
3793
+ {
3794
+ "name": "id",
3795
+ "description": null,
3796
+ "type": {
3797
+ "kind": "NON_NULL",
3798
+ "name": null,
3799
+ "ofType": {
3800
+ "kind": "SCALAR",
3801
+ "name": "ID",
3802
+ "ofType": null
3803
+ }
3804
+ },
3805
+ "defaultValue": null
3806
+ }
3807
+ ],
3808
+ "type": {
3809
+ "kind": "OBJECT",
3810
+ "name": "Bill",
3811
+ "ofType": null
3812
+ },
3813
+ "isDeprecated": false,
3814
+ "deprecationReason": null
3815
+ },
3816
+ {
3817
+ "name": "FindCurrentPartner",
3818
+ "description": null,
3819
+ "args": [
3820
+
3821
+ ],
3822
+ "type": {
3823
+ "kind": "NON_NULL",
3824
+ "name": null,
3825
+ "ofType": {
3826
+ "kind": "OBJECT",
3827
+ "name": "Partner",
3828
+ "ofType": null
3829
+ }
3830
+ },
3831
+ "isDeprecated": false,
3832
+ "deprecationReason": null
3833
+ },
3834
+ {
3835
+ "name": "FindCustomer",
3836
+ "description": null,
3837
+ "args": [
3838
+ {
3839
+ "name": "id",
3840
+ "description": null,
3841
+ "type": {
3842
+ "kind": "NON_NULL",
3843
+ "name": null,
3844
+ "ofType": {
3845
+ "kind": "SCALAR",
3846
+ "name": "ID",
3847
+ "ofType": null
3848
+ }
3849
+ },
3850
+ "defaultValue": null
2436
3851
  }
2437
- },
2438
- "isDeprecated": false,
2439
- "deprecationReason": null
2440
- },
2441
- {
2442
- "name": "updatedAt",
2443
- "description": null,
2444
- "args": [],
3852
+ ],
2445
3853
  "type": {
2446
- "kind": "NON_NULL",
2447
- "name": null,
2448
- "ofType": {
2449
- "kind": "SCALAR",
2450
- "name": "DateTime",
2451
- "ofType": null
2452
- }
3854
+ "kind": "OBJECT",
3855
+ "name": "Customer",
3856
+ "ofType": null
2453
3857
  },
2454
3858
  "isDeprecated": false,
2455
3859
  "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": [
3860
+ },
2468
3861
  {
2469
- "name": "FindBill",
3862
+ "name": "FindInformationRequest",
2470
3863
  "description": null,
2471
3864
  "args": [
2472
3865
  {
@@ -2486,14 +3879,14 @@
2486
3879
  ],
2487
3880
  "type": {
2488
3881
  "kind": "OBJECT",
2489
- "name": "Bill",
3882
+ "name": "InformationRequest",
2490
3883
  "ofType": null
2491
3884
  },
2492
3885
  "isDeprecated": false,
2493
3886
  "deprecationReason": null
2494
3887
  },
2495
3888
  {
2496
- "name": "FindCustomer",
3889
+ "name": "FindOffer",
2497
3890
  "description": null,
2498
3891
  "args": [
2499
3892
  {
@@ -2513,7 +3906,7 @@
2513
3906
  ],
2514
3907
  "type": {
2515
3908
  "kind": "OBJECT",
2516
- "name": "Customer",
3909
+ "name": "Offer",
2517
3910
  "ofType": null
2518
3911
  },
2519
3912
  "isDeprecated": false,
@@ -2750,6 +4143,113 @@
2750
4143
  "isDeprecated": false,
2751
4144
  "deprecationReason": null
2752
4145
  },
4146
+ {
4147
+ "name": "ListInformationRequests",
4148
+ "description": null,
4149
+ "args": [
4150
+ {
4151
+ "name": "sortBy",
4152
+ "description": null,
4153
+ "type": {
4154
+ "kind": "SCALAR",
4155
+ "name": "String",
4156
+ "ofType": null
4157
+ },
4158
+ "defaultValue": "\"created_at\""
4159
+ },
4160
+ {
4161
+ "name": "sortDirection",
4162
+ "description": null,
4163
+ "type": {
4164
+ "kind": "SCALAR",
4165
+ "name": "String",
4166
+ "ofType": null
4167
+ },
4168
+ "defaultValue": "\"desc\""
4169
+ },
4170
+ {
4171
+ "name": "limit",
4172
+ "description": null,
4173
+ "type": {
4174
+ "kind": "SCALAR",
4175
+ "name": "Int",
4176
+ "ofType": null
4177
+ },
4178
+ "defaultValue": "25"
4179
+ },
4180
+ {
4181
+ "name": "offset",
4182
+ "description": null,
4183
+ "type": {
4184
+ "kind": "SCALAR",
4185
+ "name": "Int",
4186
+ "ofType": null
4187
+ },
4188
+ "defaultValue": "0"
4189
+ },
4190
+ {
4191
+ "name": "customerId",
4192
+ "description": null,
4193
+ "type": {
4194
+ "kind": "SCALAR",
4195
+ "name": "ID",
4196
+ "ofType": null
4197
+ },
4198
+ "defaultValue": null
4199
+ },
4200
+ {
4201
+ "name": "after",
4202
+ "description": "Returns the elements in the list that come after the specified cursor.",
4203
+ "type": {
4204
+ "kind": "SCALAR",
4205
+ "name": "String",
4206
+ "ofType": null
4207
+ },
4208
+ "defaultValue": null
4209
+ },
4210
+ {
4211
+ "name": "before",
4212
+ "description": "Returns the elements in the list that come before the specified cursor.",
4213
+ "type": {
4214
+ "kind": "SCALAR",
4215
+ "name": "String",
4216
+ "ofType": null
4217
+ },
4218
+ "defaultValue": null
4219
+ },
4220
+ {
4221
+ "name": "first",
4222
+ "description": "Returns the first _n_ elements from the list.",
4223
+ "type": {
4224
+ "kind": "SCALAR",
4225
+ "name": "Int",
4226
+ "ofType": null
4227
+ },
4228
+ "defaultValue": null
4229
+ },
4230
+ {
4231
+ "name": "last",
4232
+ "description": "Returns the last _n_ elements from the list.",
4233
+ "type": {
4234
+ "kind": "SCALAR",
4235
+ "name": "Int",
4236
+ "ofType": null
4237
+ },
4238
+ "defaultValue": null
4239
+ }
4240
+ ],
4241
+ "type": {
4242
+ "kind": "NON_NULL",
4243
+ "name": null,
4244
+ "ofType": {
4245
+ "kind": "OBJECT",
4246
+ "name": "InformationRequestConnection",
4247
+ "ofType": null
4248
+ }
4249
+ },
4250
+ "isDeprecated": false,
4251
+ "deprecationReason": null
4252
+ },
2753
4253
  {
2754
4254
  "name": "ListOffers",
2755
4255
  "description": null,
@@ -2860,7 +4360,9 @@
2860
4360
  {
2861
4361
  "name": "ListProviders",
2862
4362
  "description": null,
2863
- "args": [],
4363
+ "args": [
4364
+
4365
+ ],
2864
4366
  "type": {
2865
4367
  "kind": "NON_NULL",
2866
4368
  "name": null,
@@ -2883,19 +4385,141 @@
2883
4385
  }
2884
4386
  ],
2885
4387
  "inputFields": null,
2886
- "interfaces": [],
4388
+ "interfaces": [
4389
+
4390
+ ],
4391
+ "enumValues": null,
4392
+ "possibleTypes": null
4393
+ },
4394
+ {
4395
+ "kind": "INPUT_OBJECT",
4396
+ "name": "RejectOfferInput",
4397
+ "description": "Autogenerated input type of RejectOffer",
4398
+ "fields": null,
4399
+ "inputFields": [
4400
+ {
4401
+ "name": "id",
4402
+ "description": null,
4403
+ "type": {
4404
+ "kind": "NON_NULL",
4405
+ "name": null,
4406
+ "ofType": {
4407
+ "kind": "SCALAR",
4408
+ "name": "ID",
4409
+ "ofType": null
4410
+ }
4411
+ },
4412
+ "defaultValue": null
4413
+ },
4414
+ {
4415
+ "name": "clientMutationId",
4416
+ "description": "A unique identifier for the client performing the mutation.",
4417
+ "type": {
4418
+ "kind": "SCALAR",
4419
+ "name": "String",
4420
+ "ofType": null
4421
+ },
4422
+ "defaultValue": null
4423
+ }
4424
+ ],
4425
+ "interfaces": null,
4426
+ "enumValues": null,
4427
+ "possibleTypes": null
4428
+ },
4429
+ {
4430
+ "kind": "OBJECT",
4431
+ "name": "RejectOfferPayload",
4432
+ "description": "Autogenerated return type of RejectOffer",
4433
+ "fields": [
4434
+ {
4435
+ "name": "clientMutationId",
4436
+ "description": "A unique identifier for the client performing the mutation.",
4437
+ "args": [
4438
+
4439
+ ],
4440
+ "type": {
4441
+ "kind": "SCALAR",
4442
+ "name": "String",
4443
+ "ofType": null
4444
+ },
4445
+ "isDeprecated": false,
4446
+ "deprecationReason": null
4447
+ },
4448
+ {
4449
+ "name": "errors",
4450
+ "description": null,
4451
+ "args": [
4452
+
4453
+ ],
4454
+ "type": {
4455
+ "kind": "NON_NULL",
4456
+ "name": null,
4457
+ "ofType": {
4458
+ "kind": "LIST",
4459
+ "name": null,
4460
+ "ofType": {
4461
+ "kind": "NON_NULL",
4462
+ "name": null,
4463
+ "ofType": {
4464
+ "kind": "SCALAR",
4465
+ "name": "String",
4466
+ "ofType": null
4467
+ }
4468
+ }
4469
+ }
4470
+ },
4471
+ "isDeprecated": false,
4472
+ "deprecationReason": null
4473
+ },
4474
+ {
4475
+ "name": "offer",
4476
+ "description": null,
4477
+ "args": [
4478
+
4479
+ ],
4480
+ "type": {
4481
+ "kind": "OBJECT",
4482
+ "name": "Offer",
4483
+ "ofType": null
4484
+ },
4485
+ "isDeprecated": false,
4486
+ "deprecationReason": null
4487
+ },
4488
+ {
4489
+ "name": "success",
4490
+ "description": null,
4491
+ "args": [
4492
+
4493
+ ],
4494
+ "type": {
4495
+ "kind": "NON_NULL",
4496
+ "name": null,
4497
+ "ofType": {
4498
+ "kind": "SCALAR",
4499
+ "name": "Boolean",
4500
+ "ofType": null
4501
+ }
4502
+ },
4503
+ "isDeprecated": false,
4504
+ "deprecationReason": null
4505
+ }
4506
+ ],
4507
+ "inputFields": null,
4508
+ "interfaces": [
4509
+
4510
+ ],
2887
4511
  "enumValues": null,
2888
4512
  "possibleTypes": null
2889
4513
  },
2890
4514
  {
2891
4515
  "kind": "INPUT_OBJECT",
2892
- "name": "RejectOfferInput",
2893
- "description": "Autogenerated input type of RejectOffer",
4516
+ "name": "RespondToInformationRequestInput",
4517
+ "description": "Autogenerated input type of RespondToInformationRequest",
2894
4518
  "fields": null,
2895
4519
  "inputFields": [
2896
4520
  {
2897
4521
  "name": "id",
2898
- "description": null,
4522
+ "description": "Id of the information request",
2899
4523
  "type": {
2900
4524
  "kind": "NON_NULL",
2901
4525
  "name": null,
@@ -2907,6 +4531,20 @@
2907
4531
  },
2908
4532
  "defaultValue": null
2909
4533
  },
4534
+ {
4535
+ "name": "informationRequest",
4536
+ "description": null,
4537
+ "type": {
4538
+ "kind": "NON_NULL",
4539
+ "name": null,
4540
+ "ofType": {
4541
+ "kind": "INPUT_OBJECT",
4542
+ "name": "InformationRequestAttributes",
4543
+ "ofType": null
4544
+ }
4545
+ },
4546
+ "defaultValue": null
4547
+ },
2910
4548
  {
2911
4549
  "name": "clientMutationId",
2912
4550
  "description": "A unique identifier for the client performing the mutation.",
@@ -2924,13 +4562,29 @@
2924
4562
  },
2925
4563
  {
2926
4564
  "kind": "OBJECT",
2927
- "name": "RejectOfferPayload",
2928
- "description": "Autogenerated return type of RejectOffer",
4565
+ "name": "RespondToInformationRequestPayload",
4566
+ "description": "Autogenerated return type of RespondToInformationRequest",
2929
4567
  "fields": [
4568
+ {
4569
+ "name": "bill",
4570
+ "description": null,
4571
+ "args": [
4572
+
4573
+ ],
4574
+ "type": {
4575
+ "kind": "OBJECT",
4576
+ "name": "Bill",
4577
+ "ofType": null
4578
+ },
4579
+ "isDeprecated": false,
4580
+ "deprecationReason": null
4581
+ },
2930
4582
  {
2931
4583
  "name": "clientMutationId",
2932
4584
  "description": "A unique identifier for the client performing the mutation.",
2933
- "args": [],
4585
+ "args": [
4586
+
4587
+ ],
2934
4588
  "type": {
2935
4589
  "kind": "SCALAR",
2936
4590
  "name": "String",
@@ -2942,7 +4596,9 @@
2942
4596
  {
2943
4597
  "name": "errors",
2944
4598
  "description": null,
2945
- "args": [],
4599
+ "args": [
4600
+
4601
+ ],
2946
4602
  "type": {
2947
4603
  "kind": "NON_NULL",
2948
4604
  "name": null,
@@ -2964,12 +4620,28 @@
2964
4620
  "deprecationReason": null
2965
4621
  },
2966
4622
  {
2967
- "name": "offer",
4623
+ "name": "informationRequest",
2968
4624
  "description": null,
2969
- "args": [],
4625
+ "args": [
4626
+
4627
+ ],
2970
4628
  "type": {
2971
4629
  "kind": "OBJECT",
2972
- "name": "Offer",
4630
+ "name": "InformationRequest",
4631
+ "ofType": null
4632
+ },
4633
+ "isDeprecated": false,
4634
+ "deprecationReason": null
4635
+ },
4636
+ {
4637
+ "name": "negotiation",
4638
+ "description": null,
4639
+ "args": [
4640
+
4641
+ ],
4642
+ "type": {
4643
+ "kind": "OBJECT",
4644
+ "name": "Negotiation",
2973
4645
  "ofType": null
2974
4646
  },
2975
4647
  "isDeprecated": false,
@@ -2978,7 +4650,9 @@
2978
4650
  {
2979
4651
  "name": "success",
2980
4652
  "description": null,
2981
- "args": [],
4653
+ "args": [
4654
+
4655
+ ],
2982
4656
  "type": {
2983
4657
  "kind": "NON_NULL",
2984
4658
  "name": null,
@@ -2993,7 +4667,9 @@
2993
4667
  }
2994
4668
  ],
2995
4669
  "inputFields": null,
2996
- "interfaces": [],
4670
+ "interfaces": [
4671
+
4672
+ ],
2997
4673
  "enumValues": null,
2998
4674
  "possibleTypes": null
2999
4675
  },
@@ -3064,7 +4740,9 @@
3064
4740
  {
3065
4741
  "name": "clientMutationId",
3066
4742
  "description": "A unique identifier for the client performing the mutation.",
3067
- "args": [],
4743
+ "args": [
4744
+
4745
+ ],
3068
4746
  "type": {
3069
4747
  "kind": "SCALAR",
3070
4748
  "name": "String",
@@ -3076,7 +4754,9 @@
3076
4754
  {
3077
4755
  "name": "customer",
3078
4756
  "description": null,
3079
- "args": [],
4757
+ "args": [
4758
+
4759
+ ],
3080
4760
  "type": {
3081
4761
  "kind": "OBJECT",
3082
4762
  "name": "Customer",
@@ -3088,7 +4768,121 @@
3088
4768
  {
3089
4769
  "name": "errors",
3090
4770
  "description": null,
3091
- "args": [],
4771
+ "args": [
4772
+
4773
+ ],
4774
+ "type": {
4775
+ "kind": "NON_NULL",
4776
+ "name": null,
4777
+ "ofType": {
4778
+ "kind": "LIST",
4779
+ "name": null,
4780
+ "ofType": {
4781
+ "kind": "NON_NULL",
4782
+ "name": null,
4783
+ "ofType": {
4784
+ "kind": "SCALAR",
4785
+ "name": "String",
4786
+ "ofType": null
4787
+ }
4788
+ }
4789
+ }
4790
+ },
4791
+ "isDeprecated": false,
4792
+ "deprecationReason": null
4793
+ },
4794
+ {
4795
+ "name": "success",
4796
+ "description": null,
4797
+ "args": [
4798
+
4799
+ ],
4800
+ "type": {
4801
+ "kind": "NON_NULL",
4802
+ "name": null,
4803
+ "ofType": {
4804
+ "kind": "SCALAR",
4805
+ "name": "Boolean",
4806
+ "ofType": null
4807
+ }
4808
+ },
4809
+ "isDeprecated": false,
4810
+ "deprecationReason": null
4811
+ }
4812
+ ],
4813
+ "inputFields": null,
4814
+ "interfaces": [
4815
+
4816
+ ],
4817
+ "enumValues": null,
4818
+ "possibleTypes": null
4819
+ },
4820
+ {
4821
+ "kind": "INPUT_OBJECT",
4822
+ "name": "UpdateWebhookUrlsInput",
4823
+ "description": "Autogenerated input type of UpdateWebhookUrls",
4824
+ "fields": null,
4825
+ "inputFields": [
4826
+ {
4827
+ "name": "liveWebhookUrl",
4828
+ "description": null,
4829
+ "type": {
4830
+ "kind": "SCALAR",
4831
+ "name": "String",
4832
+ "ofType": null
4833
+ },
4834
+ "defaultValue": null
4835
+ },
4836
+ {
4837
+ "name": "testWebhookUrl",
4838
+ "description": null,
4839
+ "type": {
4840
+ "kind": "SCALAR",
4841
+ "name": "String",
4842
+ "ofType": null
4843
+ },
4844
+ "defaultValue": null
4845
+ },
4846
+ {
4847
+ "name": "clientMutationId",
4848
+ "description": "A unique identifier for the client performing the mutation.",
4849
+ "type": {
4850
+ "kind": "SCALAR",
4851
+ "name": "String",
4852
+ "ofType": null
4853
+ },
4854
+ "defaultValue": null
4855
+ }
4856
+ ],
4857
+ "interfaces": null,
4858
+ "enumValues": null,
4859
+ "possibleTypes": null
4860
+ },
4861
+ {
4862
+ "kind": "OBJECT",
4863
+ "name": "UpdateWebhookUrlsPayload",
4864
+ "description": "Autogenerated return type of UpdateWebhookUrls",
4865
+ "fields": [
4866
+ {
4867
+ "name": "clientMutationId",
4868
+ "description": "A unique identifier for the client performing the mutation.",
4869
+ "args": [
4870
+
4871
+ ],
4872
+ "type": {
4873
+ "kind": "SCALAR",
4874
+ "name": "String",
4875
+ "ofType": null
4876
+ },
4877
+ "isDeprecated": false,
4878
+ "deprecationReason": null
4879
+ },
4880
+ {
4881
+ "name": "errors",
4882
+ "description": null,
4883
+ "args": [
4884
+
4885
+ ],
3092
4886
  "type": {
3093
4887
  "kind": "NON_NULL",
3094
4888
  "name": null,
@@ -3109,10 +4903,30 @@
3109
4903
  "isDeprecated": false,
3110
4904
  "deprecationReason": null
3111
4905
  },
4906
+ {
4907
+ "name": "partner",
4908
+ "description": null,
4909
+ "args": [
4910
+
4911
+ ],
4912
+ "type": {
4913
+ "kind": "NON_NULL",
4914
+ "name": null,
4915
+ "ofType": {
4916
+ "kind": "OBJECT",
4917
+ "name": "Partner",
4918
+ "ofType": null
4919
+ }
4920
+ },
4921
+ "isDeprecated": false,
4922
+ "deprecationReason": null
4923
+ },
3112
4924
  {
3113
4925
  "name": "success",
3114
4926
  "description": null,
3115
- "args": [],
4927
+ "args": [
4928
+
4929
+ ],
3116
4930
  "type": {
3117
4931
  "kind": "NON_NULL",
3118
4932
  "name": null,
@@ -3127,7 +4941,9 @@
3127
4941
  }
3128
4942
  ],
3129
4943
  "inputFields": null,
3130
- "interfaces": [],
4944
+ "interfaces": [
4945
+
4946
+ ],
3131
4947
  "enumValues": null,
3132
4948
  "possibleTypes": null
3133
4949
  },
@@ -3139,7 +4955,9 @@
3139
4955
  {
3140
4956
  "name": "args",
3141
4957
  "description": null,
3142
- "args": [],
4958
+ "args": [
4959
+
4960
+ ],
3143
4961
  "type": {
3144
4962
  "kind": "NON_NULL",
3145
4963
  "name": null,
@@ -3163,7 +4981,9 @@
3163
4981
  {
3164
4982
  "name": "description",
3165
4983
  "description": null,
3166
- "args": [],
4984
+ "args": [
4985
+
4986
+ ],
3167
4987
  "type": {
3168
4988
  "kind": "SCALAR",
3169
4989
  "name": "String",
@@ -3175,7 +4995,9 @@
3175
4995
  {
3176
4996
  "name": "locations",
3177
4997
  "description": null,
3178
- "args": [],
4998
+ "args": [
4999
+
5000
+ ],
3179
5001
  "type": {
3180
5002
  "kind": "NON_NULL",
3181
5003
  "name": null,
@@ -3199,7 +5021,9 @@
3199
5021
  {
3200
5022
  "name": "name",
3201
5023
  "description": null,
3202
- "args": [],
5024
+ "args": [
5025
+
5026
+ ],
3203
5027
  "type": {
3204
5028
  "kind": "NON_NULL",
3205
5029
  "name": null,
@@ -3215,7 +5039,9 @@
3215
5039
  {
3216
5040
  "name": "onField",
3217
5041
  "description": null,
3218
- "args": [],
5042
+ "args": [
5043
+
5044
+ ],
3219
5045
  "type": {
3220
5046
  "kind": "NON_NULL",
3221
5047
  "name": null,
@@ -3231,7 +5057,9 @@
3231
5057
  {
3232
5058
  "name": "onFragment",
3233
5059
  "description": null,
3234
- "args": [],
5060
+ "args": [
5061
+
5062
+ ],
3235
5063
  "type": {
3236
5064
  "kind": "NON_NULL",
3237
5065
  "name": null,
@@ -3247,7 +5075,9 @@
3247
5075
  {
3248
5076
  "name": "onOperation",
3249
5077
  "description": null,
3250
- "args": [],
5078
+ "args": [
5079
+
5080
+ ],
3251
5081
  "type": {
3252
5082
  "kind": "NON_NULL",
3253
5083
  "name": null,
@@ -3262,7 +5092,9 @@
3262
5092
  }
3263
5093
  ],
3264
5094
  "inputFields": null,
3265
- "interfaces": [],
5095
+ "interfaces": [
5096
+
5097
+ ],
3266
5098
  "enumValues": null,
3267
5099
  "possibleTypes": null
3268
5100
  },
@@ -3393,7 +5225,9 @@
3393
5225
  {
3394
5226
  "name": "deprecationReason",
3395
5227
  "description": null,
3396
- "args": [],
5228
+ "args": [
5229
+
5230
+ ],
3397
5231
  "type": {
3398
5232
  "kind": "SCALAR",
3399
5233
  "name": "String",
@@ -3405,7 +5239,9 @@
3405
5239
  {
3406
5240
  "name": "description",
3407
5241
  "description": null,
3408
- "args": [],
5242
+ "args": [
5243
+
5244
+ ],
3409
5245
  "type": {
3410
5246
  "kind": "SCALAR",
3411
5247
  "name": "String",
@@ -3417,7 +5253,9 @@
3417
5253
  {
3418
5254
  "name": "isDeprecated",
3419
5255
  "description": null,
3420
- "args": [],
5256
+ "args": [
5257
+
5258
+ ],
3421
5259
  "type": {
3422
5260
  "kind": "NON_NULL",
3423
5261
  "name": null,
@@ -3433,7 +5271,9 @@
3433
5271
  {
3434
5272
  "name": "name",
3435
5273
  "description": null,
3436
- "args": [],
5274
+ "args": [
5275
+
5276
+ ],
3437
5277
  "type": {
3438
5278
  "kind": "NON_NULL",
3439
5279
  "name": null,
@@ -3448,7 +5288,9 @@
3448
5288
  }
3449
5289
  ],
3450
5290
  "inputFields": null,
3451
- "interfaces": [],
5291
+ "interfaces": [
5292
+
5293
+ ],
3452
5294
  "enumValues": null,
3453
5295
  "possibleTypes": null
3454
5296
  },
@@ -3460,7 +5302,9 @@
3460
5302
  {
3461
5303
  "name": "args",
3462
5304
  "description": null,
3463
- "args": [],
5305
+ "args": [
5306
+
5307
+ ],
3464
5308
  "type": {
3465
5309
  "kind": "NON_NULL",
3466
5310
  "name": null,
@@ -3484,7 +5328,9 @@
3484
5328
  {
3485
5329
  "name": "deprecationReason",
3486
5330
  "description": null,
3487
- "args": [],
5331
+ "args": [
5332
+
5333
+ ],
3488
5334
  "type": {
3489
5335
  "kind": "SCALAR",
3490
5336
  "name": "String",
@@ -3496,7 +5342,9 @@
3496
5342
  {
3497
5343
  "name": "description",
3498
5344
  "description": null,
3499
- "args": [],
5345
+ "args": [
5346
+
5347
+ ],
3500
5348
  "type": {
3501
5349
  "kind": "SCALAR",
3502
5350
  "name": "String",
@@ -3508,7 +5356,9 @@
3508
5356
  {
3509
5357
  "name": "isDeprecated",
3510
5358
  "description": null,
3511
- "args": [],
5359
+ "args": [
5360
+
5361
+ ],
3512
5362
  "type": {
3513
5363
  "kind": "NON_NULL",
3514
5364
  "name": null,
@@ -3524,7 +5374,9 @@
3524
5374
  {
3525
5375
  "name": "name",
3526
5376
  "description": null,
3527
- "args": [],
5377
+ "args": [
5378
+
5379
+ ],
3528
5380
  "type": {
3529
5381
  "kind": "NON_NULL",
3530
5382
  "name": null,
@@ -3540,7 +5392,9 @@
3540
5392
  {
3541
5393
  "name": "type",
3542
5394
  "description": null,
3543
- "args": [],
5395
+ "args": [
5396
+
5397
+ ],
3544
5398
  "type": {
3545
5399
  "kind": "NON_NULL",
3546
5400
  "name": null,
@@ -3555,7 +5409,9 @@
3555
5409
  }
3556
5410
  ],
3557
5411
  "inputFields": null,
3558
- "interfaces": [],
5412
+ "interfaces": [
5413
+
5414
+ ],
3559
5415
  "enumValues": null,
3560
5416
  "possibleTypes": null
3561
5417
  },
@@ -3567,7 +5423,9 @@
3567
5423
  {
3568
5424
  "name": "defaultValue",
3569
5425
  "description": "A GraphQL-formatted string representing the default value for this input value.",
3570
- "args": [],
5426
+ "args": [
5427
+
5428
+ ],
3571
5429
  "type": {
3572
5430
  "kind": "SCALAR",
3573
5431
  "name": "String",
@@ -3579,7 +5437,9 @@
3579
5437
  {
3580
5438
  "name": "description",
3581
5439
  "description": null,
3582
- "args": [],
5440
+ "args": [
5441
+
5442
+ ],
3583
5443
  "type": {
3584
5444
  "kind": "SCALAR",
3585
5445
  "name": "String",
@@ -3591,7 +5451,9 @@
3591
5451
  {
3592
5452
  "name": "name",
3593
5453
  "description": null,
3594
- "args": [],
5454
+ "args": [
5455
+
5456
+ ],
3595
5457
  "type": {
3596
5458
  "kind": "NON_NULL",
3597
5459
  "name": null,
@@ -3607,7 +5469,9 @@
3607
5469
  {
3608
5470
  "name": "type",
3609
5471
  "description": null,
3610
- "args": [],
5472
+ "args": [
5473
+
5474
+ ],
3611
5475
  "type": {
3612
5476
  "kind": "NON_NULL",
3613
5477
  "name": null,
@@ -3622,7 +5486,9 @@
3622
5486
  }
3623
5487
  ],
3624
5488
  "inputFields": null,
3625
- "interfaces": [],
5489
+ "interfaces": [
5490
+
5491
+ ],
3626
5492
  "enumValues": null,
3627
5493
  "possibleTypes": null
3628
5494
  },
@@ -3634,7 +5500,9 @@
3634
5500
  {
3635
5501
  "name": "directives",
3636
5502
  "description": "A list of all directives supported by this server.",
3637
- "args": [],
5503
+ "args": [
5504
+
5505
+ ],
3638
5506
  "type": {
3639
5507
  "kind": "NON_NULL",
3640
5508
  "name": null,
@@ -3658,7 +5526,9 @@
3658
5526
  {
3659
5527
  "name": "mutationType",
3660
5528
  "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
3661
- "args": [],
5529
+ "args": [
5530
+
5531
+ ],
3662
5532
  "type": {
3663
5533
  "kind": "OBJECT",
3664
5534
  "name": "__Type",
@@ -3670,7 +5540,9 @@
3670
5540
  {
3671
5541
  "name": "queryType",
3672
5542
  "description": "The type that query operations will be rooted at.",
3673
- "args": [],
5543
+ "args": [
5544
+
5545
+ ],
3674
5546
  "type": {
3675
5547
  "kind": "NON_NULL",
3676
5548
  "name": null,
@@ -3686,7 +5558,9 @@
3686
5558
  {
3687
5559
  "name": "subscriptionType",
3688
5560
  "description": "If this server support subscription, the type that subscription operations will be rooted at.",
3689
- "args": [],
5561
+ "args": [
5562
+
5563
+ ],
3690
5564
  "type": {
3691
5565
  "kind": "OBJECT",
3692
5566
  "name": "__Type",
@@ -3698,7 +5572,9 @@
3698
5572
  {
3699
5573
  "name": "types",
3700
5574
  "description": "A list of all types supported by this server.",
3701
- "args": [],
5575
+ "args": [
5576
+
5577
+ ],
3702
5578
  "type": {
3703
5579
  "kind": "NON_NULL",
3704
5580
  "name": null,
@@ -3721,7 +5597,9 @@
3721
5597
  }
3722
5598
  ],
3723
5599
  "inputFields": null,
3724
- "interfaces": [],
5600
+ "interfaces": [
5601
+
5602
+ ],
3725
5603
  "enumValues": null,
3726
5604
  "possibleTypes": null
3727
5605
  },
@@ -3733,7 +5611,9 @@
3733
5611
  {
3734
5612
  "name": "description",
3735
5613
  "description": null,
3736
- "args": [],
5614
+ "args": [
5615
+
5616
+ ],
3737
5617
  "type": {
3738
5618
  "kind": "SCALAR",
3739
5619
  "name": "String",
@@ -3807,7 +5687,9 @@
3807
5687
  {
3808
5688
  "name": "inputFields",
3809
5689
  "description": null,
3810
- "args": [],
5690
+ "args": [
5691
+
5692
+ ],
3811
5693
  "type": {
3812
5694
  "kind": "LIST",
3813
5695
  "name": null,
@@ -3827,7 +5709,9 @@
3827
5709
  {
3828
5710
  "name": "interfaces",
3829
5711
  "description": null,
3830
- "args": [],
5712
+ "args": [
5713
+
5714
+ ],
3831
5715
  "type": {
3832
5716
  "kind": "LIST",
3833
5717
  "name": null,
@@ -3847,7 +5731,9 @@
3847
5731
  {
3848
5732
  "name": "kind",
3849
5733
  "description": null,
3850
- "args": [],
5734
+ "args": [
5735
+
5736
+ ],
3851
5737
  "type": {
3852
5738
  "kind": "NON_NULL",
3853
5739
  "name": null,
@@ -3863,7 +5749,9 @@
3863
5749
  {
3864
5750
  "name": "name",
3865
5751
  "description": null,
3866
- "args": [],
5752
+ "args": [
5753
+
5754
+ ],
3867
5755
  "type": {
3868
5756
  "kind": "SCALAR",
3869
5757
  "name": "String",
@@ -3875,7 +5763,9 @@
3875
5763
  {
3876
5764
  "name": "ofType",
3877
5765
  "description": null,
3878
- "args": [],
5766
+ "args": [
5767
+
5768
+ ],
3879
5769
  "type": {
3880
5770
  "kind": "OBJECT",
3881
5771
  "name": "__Type",
@@ -3887,7 +5777,9 @@
3887
5777
  {
3888
5778
  "name": "possibleTypes",
3889
5779
  "description": null,
3890
- "args": [],
5780
+ "args": [
5781
+
5782
+ ],
3891
5783
  "type": {
3892
5784
  "kind": "LIST",
3893
5785
  "name": null,
@@ -3906,7 +5798,9 @@
3906
5798
  }
3907
5799
  ],
3908
5800
  "inputFields": null,
3909
- "interfaces": [],
5801
+ "interfaces": [
5802
+
5803
+ ],
3910
5804
  "enumValues": null,
3911
5805
  "possibleTypes": null
3912
5806
  },
@@ -3974,7 +5868,11 @@
3974
5868
  {
3975
5869
  "name": "include",
3976
5870
  "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
3977
- "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
5871
+ "locations": [
5872
+ "FIELD",
5873
+ "FRAGMENT_SPREAD",
5874
+ "INLINE_FRAGMENT"
5875
+ ],
3978
5876
  "args": [
3979
5877
  {
3980
5878
  "name": "if",
@@ -3995,7 +5893,11 @@
3995
5893
  {
3996
5894
  "name": "skip",
3997
5895
  "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
3998
- "locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
5896
+ "locations": [
5897
+ "FIELD",
5898
+ "FRAGMENT_SPREAD",
5899
+ "INLINE_FRAGMENT"
5900
+ ],
3999
5901
  "args": [
4000
5902
  {
4001
5903
  "name": "if",
@@ -4016,7 +5918,10 @@
4016
5918
  {
4017
5919
  "name": "deprecated",
4018
5920
  "description": "Marks an element of a GraphQL schema as no longer supported.",
4019
- "locations": ["FIELD_DEFINITION", "ENUM_VALUE"],
5921
+ "locations": [
5922
+ "FIELD_DEFINITION",
5923
+ "ENUM_VALUE"
5924
+ ],
4020
5925
  "args": [
4021
5926
  {
4022
5927
  "name": "reason",
@@ -4033,4 +5938,4 @@
4033
5938
  ]
4034
5939
  }
4035
5940
  }
4036
- }
5941
+ }