A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
I know the REST API returns the `plan_name` on the shop endpoint from which you can determine the status of a shop. I can find posts that list possible values and I'm looking for something similar for the GraphQL response.
// query
{
shop {
name
plan {
displayName
partnerDevelopment
shopifyPlus
}
}
}
// response
{
"data": {
"shop": {
"name": "shopify-shop-slug",
"plan": {
"displayName": "Developer Preview",
"partnerDevelopment": true,
"shopifyPlus": false
}
}
}
}
I'm especially wondering what the response is for frozen, cancelled, closed or otherwise dormant shops.
Does anybody know?
Is there a way to find out?
I'm gonna list the ones I've found so far. If anybody has any to add, please do.
(list is case sensitive)
Basic Shopify
Shopify
Advanced Shopify
Shopify Plus
Pause and Build
custom
Development
Developer Preview
staff