Shopify GraphQL获取产品的交货率

问题描述

我正在尝试从[deliveryProfiles]对象(或运输配置文件)中获取产品及其交付率。使用以下查询,我可以提取与[deliveryProfile]关联的所有产品,但是我不知道如何获取每种产品的交货率。我们的商店仅使用静态运费,因此我认为我需要使用类似下面的[rateProvider]查询。但是我不知道,甚至不知道如何修改查询以包含这样的内容。

rateProvider {... on DeliveryRateDefinition {id price {amount}

我正在使用的当前查询:

query {
  deliveryProfiles (first: 5) {
    edges {
      node {
        profileItems (first: 10) {
          edges {
            node {
              product {
                  id
                  handle
              }
              variants (first: 10) {
                edges {
                  node {
                    id
                    title
                    sku
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

解决方法

弄清楚了。这仅仅是了解嵌套的问题。这是您使用GraphQL API在Shopify中获取产品和交付率的方式:

query {
  deliveryProfiles (first: 2) {
    edges {
      node {
        profileItems (first: 8) {
          edges {
            node {
              product {
                id
                handle
              }
              variants (first: 8) {
                edges {
                  node {
                    id
                    title
                  }
                }
              }
            }
          }
        }
        profileLocationGroups {
          locationGroupZones(first: 2) {
            edges {
              node {
                methodDefinitions(first: 2) {
                  edges {
                    node {
                      rateProvider {
                        ... on DeliveryRateDefinition {
                          id
                          price {
                            amount
                          }
                        }
                        ... on DeliveryParticipant {
                          id
                          fixedFee {
                            amount
                            currencyCode
                          }
                          percentageOfRateFee
                          participantServices {
                            active
                            name
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }        
      }
    }
  }
}

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...