diff --git a/src/guides/v2.3/graphql/mutations/set-billing-address.md b/src/guides/v2.3/graphql/mutations/set-billing-address.md index 4bb75e83549..bc2da8f9066 100644 --- a/src/guides/v2.3/graphql/mutations/set-billing-address.md +++ b/src/guides/v2.3/graphql/mutations/set-billing-address.md @@ -46,8 +46,16 @@ mutation { company street city + region{ + code + label + } postcode telephone + country{ + code + label + } } } } @@ -70,8 +78,16 @@ mutation { "Main Street" ], "city": "Austin", + "region": { + "code": "TX", + "label": "Texas" + }, "postcode": "78758", - "telephone": "8675309" + "telephone": "8675309", + "country": { + "code": "US", + "label": "US" + } } } }