@@ -42,7 +42,7 @@ input CustomerAddressInput {
42
42
input CustomerAddressRegionInput @doc (description : " CustomerAddressRegionInput defines the customer's state or province" ) {
43
43
region_code : String @doc (description : " The address region code" )
44
44
region : String @doc (description : " The state or province name" )
45
- region_id : Int @doc (description : " Uniquely identifies the region" )
45
+ region_id : Int @doc (description : " region_id is deprecated. Region ID is excessive on storefront and region code should suffice for all scenarios " )
46
46
}
47
47
48
48
input CustomerAddressAttributeInput {
@@ -99,7 +99,7 @@ type CustomerAddress @doc(description: "CustomerAddress contains detailed inform
99
99
id : Int @doc (description : " The ID assigned to the address object" )
100
100
customer_id : Int @doc (description : " The customer ID" )
101
101
region : CustomerAddressRegion @doc (description : " An object containing the region name, region code, and region ID" )
102
- region_id : Int @doc ( description : " A number that uniquely identifies the state, province, or other area " )
102
+ region_id : Int @deprecated ( reason : " Region ID is excessive on storefront and region code should suffice for all scenarios " )
103
103
country_id : String @doc (description : " The customer's country" )
104
104
street : [String ] @doc (description : " An array of strings that define the street number and name" )
105
105
company : String @doc (description : " The customer's company" )
@@ -122,7 +122,7 @@ type CustomerAddress @doc(description: "CustomerAddress contains detailed inform
122
122
type CustomerAddressRegion @doc (description : " CustomerAddressRegion defines the customer's state or province" ) {
123
123
region_code : String @doc (description : " The address region code" )
124
124
region : String @doc (description : " The state or province name" )
125
- region_id : Int @doc ( description : " Uniquely identifies the region" )
125
+ region_id : Int @deprecated ( reason : " Region ID is excessive on storefront and region code should suffice for all scenarios " )
126
126
}
127
127
128
128
type CustomerAddressAttribute {
0 commit comments