Anchor to inventoryTransferRemoveItemsinventory
inventoryTransferRemoveItems
mutation
Requires access scope and
access scope. Also: The user must have permission to manage inventory.
This mutation allows removing line items of a Transfer. It removes all quantities of the item from the transfer that are not associated with shipments.
Anchor to Arguments
Arguments
- Anchor to inputinput•
The input fields for the InventoryTransferRemoveItems mutation.
Was this section helpful?
Anchor to InventoryTransferRemoveItemsPayload returnsInventoryTransferRemoveItemsPayload returns
- Anchor to inventoryTransferinventory•
Transfer The transfer with line items removed.
- Anchor to removedLineItemIdsremoved•
Line Item Ids The line items that were removed from the transfer.
- Anchor to userErrorsuser•
Errors The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation inventoryTransferRemoveItems($input: InventoryTransferRemoveItemsInput!) {
inventoryTransferRemoveItems(input: $input) {
inventoryTransfer {
# InventoryTransfer fields
}
removedLineItemIds
userErrors {
field
message
}
}
}
Input
{
"input": {
"lineItems": [
"gid://shopify/<objectName>/10079785100"
],
"transferId": "gid://shopify/<objectName>/10079785100"
}
}
{
"input": {
"lineItems": [
"gid://shopify/<objectName>/10079785100"
],
"transferId": "gid://shopify/<objectName>/10079785100"
}
}
input InventoryTransferRemoveItemsInput {
lineItems: [ID!]!
transferId: ID!
}