Inventory Items
Inventory Items Query
Last updated
Was this helpful?
Inventory Items Query
Last updated
Was this helpful?
Was this helpful?
query {
inventoryItems(
first: 10,
orderBy: { direction: DESC, field: CREATED_AT },
where: {
skuContains: "PRODUCT",
dataTypeSlug: "physical_product"
}
) {
edges {
node {
id
sku
data
itemstocks {
repositoryID
quantity
ownQuantity
incomingStock
outgoingStock
}
createdAt
}
cursor
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}