测试开发不适用于 Shopify 应用

Test development is not working on Shopify app

我正在尝试使用 graphQl 在我的 shopify 应用程序上测试我的年度计划设置,但测试开发不起作用 任何帮助,将不胜感激 代码

谢谢

你的变异是错误的。您正在传递一个变量但没有定义它。请在此处关注 Shopify 文档 -

将 gQuery 更改为以下内容

mutation appSubscriptionCreate($name: String!, $lineItems: [AppSubscriptionLineItemInput!]!, $returnUrl: URL!, $test: Boolean, $trialDays: Int) {
  appSubscriptionCreate(name: $name, lineItems: $lineItems, returnUrl: $returnUrl, test: $test, trialDays: $trialDays) {
    appSubscription {
      id
    }
    confirmationUrl
    userErrors {
      field
      message
    }
  }
}