Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 781b645

Browse files
committed
GraphQL #942
1 parent e106cbb commit 781b645

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

_includes/graphql/customer-address-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Attribute | Data Type | Description
2020
`postcode` | String | The customer's ZIP or postal code
2121
`prefix` | String | An honorific, such as Dr., Mr., or Mrs.
2222
`region` | [CustomerAddressRegionInput](#customerAddressRegionInput) | An object that defines the customer's state or province
23-
`region_id` | Int | A number that uniquely identifies the state, province, or other area
23+
`region_id` | Int | Deprecated. Use `region` instead. A number that uniquely identifies the state, province, or other area
2424
`street` | [String] | An array of strings that define the street number and name
2525
`suffix` | String | A value such as Sr., Jr., or III
2626
`telephone` | String | The telephone number

_includes/graphql/customer-address-output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Attribute | Data Type | Description
2222
`postcode` | String | The customer's ZIP or postal code
2323
`prefix` | String | An honorific, such as Dr., Mr., or Mrs.
2424
`region` | [CustomerAddressRegion](#customerAddressRegionOutput) | An object that defines the customer's state or province
25-
`region_id` | Int | A number that uniquely identifies the state, province, or other area
25+
`region_id` | Int | Deprecated. Use `region` instead. A number that uniquely identifies the state, province, or other area
2626
`street` | [String] | An array of strings that define the street number and name
2727
`suffix` | String | A value such as Sr., Jr., or III
2828
`telephone` | String | The telephone number

guides/v2.3/graphql/mutations/create-customer-address.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ mutation {
2222
createCustomerAddress(input: {
2323
region: {
2424
region: "Arizona"
25-
region_id: 4
2625
region_code: "AZ"
2726
}
2827
country_id: US
@@ -63,7 +62,6 @@ mutation {
6362
"customer_id": 5,
6463
"region": {
6564
"region": "Arizona",
66-
"region_id": 4,
6765
"region_code": "AZ"
6866
},
6967
"country_id": "US",

0 commit comments

Comments
 (0)