0

我有一个 GraphQl 查询,它在开发中有效,但在暂存中无效。

query all_Products($region: Alpha2Code!) {
    variantsByregion(region: $region
      where:{isB2B:{eq:true}}
      ) {
        items {
          productCode,
          isB2B
        }
    }
}

如果我在我的开发中运行上述查询,它将使用 isB2B 进行过滤,但是一旦我在 Staging 中使用此查询,我就会得到整个数据。

4

0 回答 0