InventoryItem
Inventory Item Type
Last updated
Was this helpful?
Inventory Item Type
Last updated
Was this helpful?
Was this helpful?
query {
inventoryItems(
where: { sku: "ITEM-123" }
) {
edges {
node {
id
sku
data
itemstocks {
repositoryID
quantity
ownQuantity
incomingStock
outgoingStock
}
}
}
}
}mutation {
createInventoryItem(
input: {
sku: "ITEM-456",
dataTypeSlug: "physical_product",
data: {
"name": "Premium Headphones",
"description": "Noise-cancelling wireless headphones",
"weight": 0.3,
"dimensions": {
"length": 18,
"width": 15,
"height": 8
},
"category": "Electronics",
"subcategory": "Audio"
}
}
) {
inventoryItem {
id
sku
data
}
workflows {
id
name
}
}
}