Getting Current Inventory Levels of Products based on Order Line Items

Hey @ner ,

This should work if you query the variant connection on lineItems

{
  orders(query:"created_at:>2020-05-01-01T04:00:00Z created_at:<2020-07-30-01T04:23:59Z") {
    edges {
      node {
        id
        name
        createdAt
        lineItems(first: 15) {
          edges {
            node {
              fulfillmentStatus
              title
              quantity
              sku
              variantTitle
              customAttributes {
              value
              }
              ---------
              variant {  
                  inventoryQuantity
              }
              ---------
            }
          }
        }
      }
    }
  }
}