Skip to main content

Allocation Object

Represents allocation.

type Allocation implements Node {
id: ID!
quantity: Int!
warehouse: Warehouse!
}

Fields

id ● ID!

The ID of allocation.

quantity ● Int!

Quantity allocated for orders.

Requires one of the following permissions: MANAGE_PRODUCTSMANAGE_ORDERS

warehouse ● Warehouse!

The warehouse were items were allocated.

Requires one of the following permissions: MANAGE_PRODUCTSMANAGE_ORDERS

Interfaces

Node

An object with an ID

Member Of

OrderLine object