我正在尝试使用 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
}
}
}