Skip to main content

InitInventoryTransferInput

Autogenerated input type of InitInventoryTransfer

input InitInventoryTransferInput {
clientMutationId: String
fromLocationId: ID!
items: [InventoryItemTransferInput!]!
reason: String!
toLocationId: ID!
}

Fields

InitInventoryTransferInput.clientMutationId ● String scalar

A unique identifier for the client performing the mutation.

InitInventoryTransferInput.fromLocationId ● ID! non-null scalar

The ID of the location from which the inventory is being transferred.

InitInventoryTransferInput.items ● [InventoryItemTransferInput!]! non-null input

The list of products to be transferred.Each product must have an ID and a quantity in the next format: [{ itemId: "UUID", quantity: 10 }]

InitInventoryTransferInput.reason ● String! non-null scalar

The reason for the inventory transfer.

InitInventoryTransferInput.toLocationId ● ID! non-null scalar

The ID of the location to which the inventory is being transferred.

Member Of

initInventoryTransfer mutation