Transactions
Transactions Query
Arguments
Name
Type
Description
Return Type
Notes
Usage Example
query {
# Get all transactions for a specific repository today
transactions(
where: {
repositoryID: "warehouse-main",
createdAt_GTE: "2024-01-15T00:00:00Z",
createdAt_LTE: "2024-01-15T23:59:59Z"
},
orderBy: { direction: DESC, field: CREATED_AT }
) {
edges {
node {
id
quantity
type
createdAt
item {
sku
data
}
repository {
name
}
movement {
id
fromRepositoryID
toRepositoryID
}
}
cursor
}
totalCount
}
}Common Filters
Notes
Last updated
Was this helpful?
