GraphQL Schema Updates
The root company query on the Storefront GraphQL API is now deprecated. B2B company data lives under the authenticated customer’s activeCompany context, introduced in July, and integrations should migrate to it.
Storefront GraphQL
Query.companydeprecated: querycustomer { activeCompany { ... } }instead. TheActiveCompanytype exposes the sameaddresses,address, andordersfields asCompanyQueries.CompanyQueries.addressesdeprecated: usecustomer { activeCompany { addresses { ... } } }. Pagination,CompanyAddressFiltersInputfiltering, andCompanyAddressSortInputsorting are unchanged.- No behavior change today: the deprecated fields continue to resolve. A sunset date has not been set; migrate before removal is announced.
For schema details, browse the Storefront GraphQL API reference.