GraphQL Shopify API 的 inventoryAdjustQuantities 突变无法正常工作

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

这是我使用的查询:

        mutation {
          inventoryAdjustQuantities(input: {
            changes: [
              {
                inventoryItemId: "gid://shopify/InventoryItem/52015591457087",
                delta: 11,
                locationId: "gid://shopify/Location/101265211711"
              }
            ],
            name: "available",
            reason: "other"
          }) {
            userErrors {
              field
              message
              code
            }
          }
        }

它还给我这个

{
    "data": {
        "inventoryAdjustQuantities": {
            "userErrors": [],
        }
    },
    "extensions": {
        "cost": {
            "requestedQueryCost": 12,
            "actualQueryCost": 12,
            "throttleStatus": {
                "maximumAvailable": 2000.0,
                "currentlyAvailable": 1988,
                "restoreRate": 100.0
            }
        }
    }
}

它不返回任何错误。但它对我的产品没有任何影响。 我用的是2024/07版本。

graphql shopify shopify-api
1个回答
0
投票

我复制了案例并复制了突变,替换了

inventoryItemId
locationId
并得到了相同的响应。但是产品数量对我来说增加了,可能是你正在检查不同的产品。

© www.soinside.com 2019 - 2024. All rights reserved.