Available queries

Associated queryReturns multiple results
Batch
Batches✔️

Available fields

LabelTypeNotesNull
batch_idstringThe batch id
expiration_dateDateNoHourThe batch's expiration date✔️
idintegerThe batch's id
line_itemLine itemThe line item using this batch
quantityfloatThe quantity of batches used in line items

Example of a query

query{
  Batches{
    edges{
      node{
        batch_id
        expiration_date
        id
        line_item{
          id
        }
        quantity
      }
    }
  }
}