Available queries
| Associated query | Returns multiple results |
|---|---|
| Batch | |
| Batches | ✔️ |
Available fields
| Label | Type | Notes | Null |
|---|---|---|---|
| batch_id | string | The batch id | |
| expiration_date | DateNoHour | The batch's expiration date | ✔️ |
| id | integer | The batch's id | |
| line_item | Line item | The line item using this batch | |
| quantity | float | The quantity of batches used in line items |
Example of a query
query{
Batches{
edges{
node{
batch_id
expiration_date
id
line_item{
id
}
quantity
}
}
}
}