Tags:
- Action Required
- Admin GraphQL API
- 2026-01
Deprecation of Shop.billingAddress in favor of Shop.shopAddress
Shop.billingAddress in favor of Shop.shopAddressAs of API version 2026-01, the field will be introduced to the Shop object in the GraphQL Admin API. This new field replaces the now-deprecated field, which will be removed in a future version. will have identical structure and values as .
Billing account address currently corresponds to the shop address. This change makes that relationship clearer, and supports potential future separation of billing and shop addresses.
Action required
You should update your queries to use the new field when accessing the Shop object in the GraphQL Admin API. Replace instances of with .
For example, update your query from:
query ShopAddress {
shop {
billingAddress {
address1
address2
city
province
zip
country
}
}
}
to:
query ShopAddress {
shop {
shopAddress {
address1
address2
city
province
zip
country
}
}
}
By making these changes, you ensure compatibility with future API versions.
Was this section helpful?