Inventory Thoughput Stats via API

Hello, is it possible to pull total received and total shipped by sku stats via graphql api? (similar to this page that you guys have: https://sfapp.shiphero.com/dashboard/reports/inventory)

So far, i’ve been able to only find on_hand/available propeterties using the WarehouseProducts object, which does not show me how many has been shipped

I’ve noticed that there are inventory snapshot/ sync endpoints but not sure if that applies to what im looking for.

HI @jndb!
Unfortunately, reports are not available through our API, just the app.
Does inventory_changes query work for that purpose?
You could use something like this:

query {
  inventory_changes(date_from: "2020-03-03", date_to: "2020-03-04") {
    request_id
    complexity
    data(first: 20) {
      edges {
        node {
          user_id
          account_id
          warehouse_id
          sku
          previous_on_hand
          change_in_on_hand
          reason
          cycle_counted
          location_id
          created_at
        }
      }
    }
  }
}