如何修复Shopify GraphQL错误:“在线商店频道已锁定。”

时间:2019-11-25 20:10:39

标签: graphql shopify shopify-api

在我正在开发的Shopify主题上,Chrome开发工具中的网络标签显示对/api/graphql的请求返回状态码400和以下错误消息: {"error":"Online Store channel is locked."}

此请求的有效负载为:

{
  shop {
    paymentSettings {
      currencyCode
    }
  }
  node(id: "Z2lkO....") {
    ... on ProductVariant {
      requiresShipping
      price
      presentmentPrices(first: 25) {
        edges {
          node {
            price {
              amount
              currencyCode
            }
          }
        }
      }
    }
  }
}

为什么会失败,我该如何解决?

0 个答案:

没有答案