ShopQL iOS中的曲目订单状态的GraphQL查询

时间:2018-01-06 14:17:24

标签: ios shopify ios11 swift4 shopify-app

我是GraphQL和Shopify的新手。我的要求是使用shopify iOS SDK跟踪订单状态,我无法找到任何跟踪订单状态的解决方案。

我可以使用此查询获取用户的订单列表

{
  customer(customerAccessToken: token) {
    orders(first: 20) {
      edges {
        node {
          id
          orderNumber
          totalPrice
          currencyCode
          customerLocale
          customerUrl
          email
          phone
          processedAt
          subtotalPrice
          totalRefunded
          totalShippingPrice
          totalTax
          shippingAddress {
            address1
            address2
            city
            company
            country
            countryCode
            firstName
            formatted
            formattedArea
            lastName
            latitude
            longitude
            name
            phone
            province
            provinceCode
            zip
          }
        }
      }
    }
  }
}

我一直在做很多R& D但没有任何解决方案来跟踪订单状态。

任何人都可以帮助我吗?

0 个答案:

没有答案