@@ -14,6 +14,8 @@ def queries
14
14
edges {
15
15
node {
16
16
id
17
+ includeFields
18
+ metafieldNamespaces
17
19
endpoint {
18
20
__typename
19
21
... on WebhookHttpEndpoint {
@@ -36,13 +38,15 @@ def queries
36
38
register_add_query :
37
39
<<~QUERY ,
38
40
mutation webhookSubscription {
39
- webhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {callbackUrl: "https://app-address.com/test-webhooks"}) {
41
+ webhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {callbackUrl: "https://app-address.com/test-webhooks", includeFields: ["field1", "field2"], metafieldNamespaces: ["namespace1", "namespace2"] }) {
40
42
userErrors {
41
43
field
42
44
message
43
45
}
44
46
webhookSubscription {
45
47
id
48
+ includeFields
49
+ metafieldNamespaces
46
50
}
47
51
}
48
52
}
@@ -82,7 +86,11 @@ def queries
82
86
"data" => {
83
87
"webhookSubscriptionCreate" => {
84
88
"userErrors" => [ ] ,
85
- "webhookSubscription" => { "id" => "gid://shopify/WebhookSubscription/12345" } ,
89
+ "webhookSubscription" => {
90
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
91
+ "includeFields" => [ "field1" , "field2" ] ,
92
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" ] ,
93
+ } ,
86
94
} ,
87
95
} ,
88
96
} ,
@@ -123,6 +131,23 @@ def queries
123
131
} ,
124
132
} ,
125
133
} ,
134
+ check_existing_response_with_attributes : {
135
+ "data" => {
136
+ "webhookSubscriptions" => {
137
+ "edges" => [
138
+ "node" => {
139
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
140
+ "includeFields" => [ "field1" , "field2" ] ,
141
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" ] ,
142
+ "endpoint" => {
143
+ "typename" => "WebhookHttpEndpoint" ,
144
+ "callbackUrl" => "https://app-address.com/test-webhooks" ,
145
+ } ,
146
+ } ,
147
+ ] ,
148
+ } ,
149
+ } ,
150
+ } ,
126
151
register_update_query :
127
152
<<~QUERY ,
128
153
mutation webhookSubscription {
@@ -137,6 +162,36 @@ def queries
137
162
}
138
163
}
139
164
QUERY
165
+ register_update_query_with_fields :
166
+ <<~QUERY ,
167
+ mutation webhookSubscription {
168
+ webhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {callbackUrl: "https://app-address.com/test-webhooks", includeFields: ["field1", "field2", "field3"]}) {
169
+ userErrors {
170
+ field
171
+ message
172
+ }
173
+ webhookSubscription {
174
+ id
175
+ includeFields
176
+ }
177
+ }
178
+ }
179
+ QUERY
180
+ register_update_query_with_metafield_namespaces :
181
+ <<~QUERY ,
182
+ mutation webhookSubscription {
183
+ webhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {callbackUrl: "https://app-address.com/test-webhooks", metafieldNamespaces: ["namespace1", "namespace2", "namespace3"]}) {
184
+ userErrors {
185
+ field
186
+ message
187
+ }
188
+ webhookSubscription {
189
+ id
190
+ metafieldNamespaces
191
+ }
192
+ }
193
+ }
194
+ QUERY
140
195
register_update_response : {
141
196
"data" => {
142
197
"webhookSubscriptionUpdate" => {
@@ -145,6 +200,29 @@ def queries
145
200
} ,
146
201
} ,
147
202
} ,
203
+
204
+ register_update_with_fields_response : {
205
+ "data" => {
206
+ "webhookSubscriptionUpdate" => {
207
+ "userErrors" => [ ] ,
208
+ "webhookSubscription" => {
209
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
210
+ "includeFields" => [ "field1" , "field2" , "field3" ] ,
211
+ } ,
212
+ } ,
213
+ } ,
214
+ } ,
215
+ register_update_with_metafield_namespaces_response : {
216
+ "data" => {
217
+ "webhookSubscriptionUpdate" => {
218
+ "userErrors" => [ ] ,
219
+ "webhookSubscription" => {
220
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
221
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" , "namespace3" ] ,
222
+ } ,
223
+ } ,
224
+ } ,
225
+ } ,
148
226
} ,
149
227
event_bridge : {
150
228
check_query :
@@ -154,6 +232,8 @@ def queries
154
232
edges {
155
233
node {
156
234
id
235
+ includeFields
236
+ metafieldNamespaces
157
237
endpoint {
158
238
__typename
159
239
... on WebhookEventBridgeEndpoint {
@@ -175,13 +255,15 @@ def queries
175
255
register_add_query :
176
256
<<~QUERY ,
177
257
mutation webhookSubscription {
178
- eventBridgeWebhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {arn: "test-webhooks"}) {
258
+ eventBridgeWebhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {arn: "test-webhooks", includeFields: ["field1", "field2"], metafieldNamespaces: ["namespace1", "namespace2"] }) {
179
259
userErrors {
180
260
field
181
261
message
182
262
}
183
263
webhookSubscription {
184
264
id
265
+ includeFields
266
+ metafieldNamespaces
185
267
}
186
268
}
187
269
}
@@ -220,7 +302,11 @@ def queries
220
302
"data" => {
221
303
"eventBridgeWebhookSubscriptionCreate" => {
222
304
"userErrors" => [ ] ,
223
- "webhookSubscription" => { "id" => "gid://shopify/WebhookSubscription/12345" } ,
305
+ "webhookSubscription" => {
306
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
307
+ "includeFields" => [ "field1" , "field2" ] ,
308
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" ] ,
309
+ } ,
224
310
} ,
225
311
} ,
226
312
} ,
@@ -261,6 +347,23 @@ def queries
261
347
} ,
262
348
} ,
263
349
} ,
350
+ check_existing_response_with_attributes : {
351
+ "data" => {
352
+ "webhookSubscriptions" => {
353
+ "edges" => [
354
+ "node" => {
355
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
356
+ "endpoint" => {
357
+ "typename" => "WebhookEventBridgeEndpoint" ,
358
+ "arn" => "test-webhooks" ,
359
+ } ,
360
+ "includeFields" => [ "field2" , "field1" ] ,
361
+ "metafieldNamespaces" => [ "namespace2" , "namespace1" ] ,
362
+ } ,
363
+ ] ,
364
+ } ,
365
+ } ,
366
+ } ,
264
367
register_update_query :
265
368
<<~QUERY ,
266
369
mutation webhookSubscription {
@@ -275,6 +378,36 @@ def queries
275
378
}
276
379
}
277
380
QUERY
381
+ register_update_query_with_fields :
382
+ <<~QUERY ,
383
+ mutation webhookSubscription {
384
+ eventBridgeWebhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {arn: "test-webhooks", includeFields: ["field1", "field2", "field3"]}) {
385
+ userErrors {
386
+ field
387
+ message
388
+ }
389
+ webhookSubscription {
390
+ id
391
+ includeFields
392
+ }
393
+ }
394
+ }
395
+ QUERY
396
+ register_update_query_with_metafield_namespaces :
397
+ <<~QUERY ,
398
+ mutation webhookSubscription {
399
+ eventBridgeWebhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {arn: "test-webhooks", metafieldNamespaces: ["namespace1", "namespace2", "namespace3"]}) {
400
+ userErrors {
401
+ field
402
+ message
403
+ }
404
+ webhookSubscription {
405
+ id
406
+ metafieldNamespaces
407
+ }
408
+ }
409
+ }
410
+ QUERY
278
411
register_update_response : {
279
412
"data" => {
280
413
"eventBridgeWebhookSubscriptionUpdate" => {
@@ -283,6 +416,28 @@ def queries
283
416
} ,
284
417
} ,
285
418
} ,
419
+ register_update_with_fields_response : {
420
+ "data" => {
421
+ "eventBridgeWebhookSubscriptionUpdate" => {
422
+ "userErrors" => [ ] ,
423
+ "webhookSubscription" => {
424
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
425
+ "includeFields" => [ "field1" , "field2" , "field3" ] ,
426
+ } ,
427
+ } ,
428
+ } ,
429
+ } ,
430
+ register_update_with_metafield_namespaces_response : {
431
+ "data" => {
432
+ "eventBridgeWebhookSubscriptionUpdate" => {
433
+ "userErrors" => [ ] ,
434
+ "webhookSubscription" => {
435
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
436
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" , "namespace3" ] ,
437
+ } ,
438
+ } ,
439
+ } ,
440
+ } ,
286
441
} ,
287
442
pub_sub : {
288
443
check_query :
@@ -292,6 +447,8 @@ def queries
292
447
edges {
293
448
node {
294
449
id
450
+ includeFields
451
+ metafieldNamespaces
295
452
endpoint {
296
453
__typename
297
454
... on WebhookPubSubEndpoint {
@@ -314,13 +471,15 @@ def queries
314
471
register_add_query :
315
472
<<~QUERY ,
316
473
mutation webhookSubscription {
317
- pubSubWebhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {pubSubProject: "my-project-id", pubSubTopic: "my-topic-id"}) {
474
+ pubSubWebhookSubscriptionCreate(topic: SOME_TOPIC, webhookSubscription: {pubSubProject: "my-project-id", pubSubTopic: "my-topic-id", includeFields: ["field1", "field2"], metafieldNamespaces: ["namespace1", "namespace2"] }) {
318
475
userErrors {
319
476
field
320
477
message
321
478
}
322
479
webhookSubscription {
323
480
id
481
+ includeFields
482
+ metafieldNamespaces
324
483
}
325
484
}
326
485
}
@@ -359,7 +518,11 @@ def queries
359
518
"data" => {
360
519
"pubSubWebhookSubscriptionCreate" => {
361
520
"userErrors" => [ ] ,
362
- "webhookSubscription" => { "id" => "gid://shopify/WebhookSubscription/12345" } ,
521
+ "webhookSubscription" => {
522
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
523
+ "includeFields" => [ "field1" , "field2" ] ,
524
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" ] ,
525
+ } ,
363
526
} ,
364
527
} ,
365
528
} ,
@@ -401,6 +564,24 @@ def queries
401
564
} ,
402
565
} ,
403
566
} ,
567
+ check_existing_response_with_attributes : {
568
+ "data" => {
569
+ "webhookSubscriptions" => {
570
+ "edges" => [
571
+ "node" => {
572
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
573
+ "endpoint" => {
574
+ "typename" => "WebhookPubSubEndpoint" ,
575
+ "pubSubProject" => "my-project-id" ,
576
+ "pubSubTopic" => "my-topic-id" ,
577
+ } ,
578
+ "includeFields" => [ "field1" , "field2" ] ,
579
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" ] ,
580
+ } ,
581
+ ] ,
582
+ } ,
583
+ } ,
584
+ } ,
404
585
register_update_query :
405
586
<<~QUERY ,
406
587
mutation webhookSubscription {
@@ -415,6 +596,37 @@ def queries
415
596
}
416
597
}
417
598
QUERY
599
+ register_update_query_with_fields :
600
+ <<~QUERY ,
601
+ mutation webhookSubscription {
602
+ pubSubWebhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {pubSubProject: "my-project-id", pubSubTopic: "my-topic-id", includeFields: ["field1", "field2", "field3"]}) {
603
+ userErrors {
604
+ field
605
+ message
606
+ }
607
+ webhookSubscription {
608
+ id
609
+ includeFields
610
+ }
611
+ }
612
+ }
613
+ QUERY
614
+ register_update_query_with_metafield_namespaces :
615
+ <<~QUERY ,
616
+ mutation webhookSubscription {
617
+ pubSubWebhookSubscriptionUpdate(id: "gid://shopify/WebhookSubscription/12345", webhookSubscription: {pubSubProject: "my-project-id", pubSubTopic: "my-topic-id", metafieldNamespaces: ["namespace1", "namespace2", "namespace3"]}) {
618
+ userErrors {
619
+ field
620
+ message
621
+ }
622
+ webhookSubscription {
623
+ id
624
+ metafieldNamespaces
625
+ }
626
+ }
627
+ }
628
+ QUERY
629
+
418
630
register_update_response : {
419
631
"data" => {
420
632
"pubSubWebhookSubscriptionUpdate" => {
@@ -423,6 +635,28 @@ def queries
423
635
} ,
424
636
} ,
425
637
} ,
638
+ register_update_with_fields_response : {
639
+ "data" => {
640
+ "pubSubWebhookSubscriptionUpdate" => {
641
+ "userErrors" => [ ] ,
642
+ "webhookSubscription" => {
643
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
644
+ "includeFields" => [ "field1" , "field2" , "field3" ] ,
645
+ } ,
646
+ } ,
647
+ } ,
648
+ } ,
649
+ register_update_with_metafield_namespaces_response : {
650
+ "data" => {
651
+ "pubSubWebhookSubscriptionUpdate" => {
652
+ "userErrors" => [ ] ,
653
+ "webhookSubscription" => {
654
+ "id" => "gid://shopify/WebhookSubscription/12345" ,
655
+ "metafieldNamespaces" => [ "namespace1" , "namespace2" , "namespace3" ] ,
656
+ } ,
657
+ } ,
658
+ } ,
659
+ } ,
426
660
} ,
427
661
fetch_id_query :
428
662
<<~QUERY ,
0 commit comments