在shopify上使用graphql查询sellPlanGroups

问题描述 投票:0回答:1

我使用 Shopify GraphQL 应用程序创建了 2 个 sellPlanGroup,并且获取应用程序数据的查询正常。但是当我在自定义应用程序中使用此语句时,它返回 null。如何解决这个问题? enter image description here

我添加scopes =“write_products,read_customer_ payment_methods,read_own_subscription_contracts,write_own_subscription_contracts”进行查询,但它返回nul

node.js reactjs shopify subscription
1个回答
0
投票

您的查询写得不正确。 sellPlanGroups 是复数,返回零、一个或多个结果,最多可达十个。尝试询问边及其节点。

query{
    sellingPlanGroups(first: 10) {
      edges {
        node {
          appId
          id
          name
          description
          summary
        }
      }
    }
  }
© www.soinside.com 2019 - 2024. All rights reserved.