From 76dc8382b943299b4f94c4f2f4fb827151fc3ecd Mon Sep 17 00:00:00 2001 From: vinoth Date: Thu, 13 Feb 2020 23:24:34 +0530 Subject: [PATCH] Adding missing information in setBillingAddress query --- .../graphql/mutations/set-billing-address.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) 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" + } } } }