Returns the Shop resource corresponding to the access token used in the request. The Shop resource contains business and store management settings for the shop.


Represents a collection of general settings and information about the shop.


Was this section helpful?
Retrieve information about a shop
Hide code
DescriptionCopy
query {
  shop {
    name
    currencyCode
    checkoutApiSupported
    taxesIncluded
    resourceLimits {
      maxProductVariants
    }
  }
}
Hide code
Response
JSON
{
  "shop": {
    "name": "Snowdevil",
    "currencyCode": "USD",
    "checkoutApiSupported": true,
    "taxesIncluded": false,
    "resourceLimits": {
      "maxProductVariants": 100
    }
  }
}