4
4
}
5
5
6
6
"""
7
- Exactly one field of input must be provided, and all others omitted .
7
+ Requires that exactly one field must be supplied and that field must not be `null` .
8
8
"""
9
9
directive @oneOf on INPUT_OBJECT
10
10
@@ -175,7 +175,7 @@ type CartDeliveryOption {
175
175
"""
176
176
The unique identifier of the delivery option.
177
177
"""
178
- handle : String !
178
+ handle : Handle !
179
179
180
180
"""
181
181
The title of the delivery option.
@@ -1508,7 +1508,7 @@ enum CountryCode {
1508
1508
TO
1509
1509
1510
1510
"""
1511
- Turkey .
1511
+ Türkiye .
1512
1512
"""
1513
1513
TR
1514
1514
@@ -2500,6 +2500,11 @@ type Customer implements HasMetafields {
2500
2500
"""
2501
2501
email : String
2502
2502
2503
+ """
2504
+ The customer's first name.
2505
+ """
2506
+ firstName : String
2507
+
2503
2508
"""
2504
2509
Whether the customer has any of the given tags.
2505
2510
"""
@@ -2525,6 +2530,11 @@ type Customer implements HasMetafields {
2525
2530
"""
2526
2531
id : ID !
2527
2532
2533
+ """
2534
+ The customer's last name.
2535
+ """
2536
+ lastName : String
2537
+
2528
2538
"""
2529
2539
Returns a metafield by namespace and key that belongs to the resource.
2530
2540
"""
@@ -2681,83 +2691,13 @@ input FunctionRunResult {
2681
2691
operations : [Operation ! ]!
2682
2692
}
2683
2693
2684
- """
2685
- Represents a gate configuration.
2686
- """
2687
- type GateConfiguration implements HasMetafields {
2688
- """
2689
- An optional string identifier.
2690
- """
2691
- appId : String
2692
-
2693
- """
2694
- A non-unique string used to group gate configurations.
2695
- """
2696
- handle : String
2697
-
2698
- """
2699
- The ID of the gate configuration.
2700
- """
2701
- id : ID !
2702
-
2703
- """
2704
- Returns a metafield by namespace and key that belongs to the resource.
2705
- """
2706
- metafield (
2707
- """
2708
- The key for the metafield.
2709
- """
2710
- key : String !
2711
-
2712
- """
2713
- The container the metafield belongs to. If omitted, the app-reserved namespace will be used.
2714
- """
2715
- namespace : String
2716
- ): Metafield
2717
- }
2718
-
2719
- """
2720
- Represents a connection from a subject to a gate configuration.
2721
- """
2722
- type GateSubject {
2723
- """
2724
- The bound gate configuration.
2725
- """
2726
- configuration (
2727
- """
2728
- The appId of the gate configurations to search for.
2729
- """
2730
- appId : String @deprecated (reason : " Use GateSubject.handle to filter gates instead." )
2731
- ): GateConfiguration !
2732
-
2733
- """
2734
- The ID of the gate subject.
2735
- """
2736
- id : ID !
2737
- }
2738
-
2739
2694
"""
2740
2695
A function-scoped handle to a refer a resource.
2741
2696
The Handle type appears in a JSON response as a String, but it is not intended to be human-readable.
2742
2697
Example value: `"10079785100"`
2743
2698
"""
2744
2699
scalar Handle
2745
2700
2746
- """
2747
- Gate subjects associated to the specified resource.
2748
- """
2749
- interface HasGates {
2750
- """
2751
- Returns active gate subjects bound to the resource.
2752
- """
2753
- gates (
2754
- """
2755
- The handle of the gate configurations to search for.
2756
- """
2757
- handle : String
2758
- ): [GateSubject ! ]!
2759
- }
2760
-
2761
2701
"""
2762
2702
Represents information about the metafields associated to the specified resource.
2763
2703
"""
@@ -2825,7 +2765,7 @@ type Input {
2825
2765
"""
2826
2766
locations (
2827
2767
"""
2828
- The list of location identifiers to search for.
2768
+ The list of location GIDs to search for.
2829
2769
"""
2830
2770
identifiers : [String ! ]
2831
2771
@@ -2935,11 +2875,6 @@ enum LanguageCode {
2935
2875
"""
2936
2876
CE
2937
2877
2938
- """
2939
- Central Kurdish.
2940
- """
2941
- CKB
2942
-
2943
2878
"""
2944
2879
Czech.
2945
2880
"""
@@ -3020,11 +2955,6 @@ enum LanguageCode {
3020
2955
"""
3021
2956
FI
3022
2957
3023
- """
3024
- Filipino.
3025
- """
3026
- FIL
3027
-
3028
2958
"""
3029
2959
Faroese.
3030
2960
"""
@@ -3375,16 +3305,6 @@ enum LanguageCode {
3375
3305
"""
3376
3306
RW
3377
3307
3378
- """
3379
- Sanskrit.
3380
- """
3381
- SA
3382
-
3383
- """
3384
- Sardinian.
3385
- """
3386
- SC
3387
-
3388
3308
"""
3389
3309
Sindhi.
3390
3310
"""
@@ -3858,7 +3778,7 @@ type Market implements HasMetafields {
3858
3778
"""
3859
3779
A human-readable unique string for the market automatically generated from its title.
3860
3780
"""
3861
- handle : String !
3781
+ handle : Handle !
3862
3782
3863
3783
"""
3864
3784
A globally-unique identifier.
@@ -4028,21 +3948,11 @@ input Operation @oneOf {
4028
3948
"""
4029
3949
Represents a product.
4030
3950
"""
4031
- type Product implements HasGates & HasMetafields {
4032
- """
4033
- Returns active gate subjects bound to the resource.
4034
- """
4035
- gates (
4036
- """
4037
- The handle of the gate configurations to search for.
4038
- """
4039
- handle : String
4040
- ): [GateSubject ! ]!
4041
-
3951
+ type Product implements HasMetafields {
4042
3952
"""
4043
3953
A unique human-friendly string of the product's title.
4044
3954
"""
4045
- handle : String !
3955
+ handle : Handle !
4046
3956
4047
3957
"""
4048
3958
Whether the product has any of the given tags.
@@ -4328,4 +4238,4 @@ enum WeightUnit {
4328
4238
1 pound equals 16 ounces.
4329
4239
"""
4330
4240
POUNDS
4331
- }
4241
+ }
0 commit comments