You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current
storesQuery
Portion of the GraphQL query used in the getStores API endpoint
storesQuery = "\n query stores(
\n $where: String\n $sort: [String!]\n $limit: Int\n $offset: Int\n $locale: Locale!\n
) {\n stores(\n where: $where\n sort: $sort\n limit: $limit\n offset: $offset\n ) {\n ...StoreQueryResultFragment\n }\n }\n"