Item Movements
Item Movements Query
Arguments
Name
Type
Description
Return Type
Usage Example
query {
# Get all pending movements for a specific item
itemMovements(
where: {
itemID: "item-123",
executedAt_NULL: true
},
orderBy: { direction: ASC, field: CREATED_AT }
) {
edges {
node {
id
quantity
fromRepositoryID
toRepositoryID
fromRepository {
id
name
}
toRepository {
id
name
}
item {
sku
data
}
blockedBy
createdAt
}
cursor
}
totalCount
}
}Common Filters
Notes
Last updated
Was this helpful?
