Skip to main content

Allocation

Represents allocation.

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

Fields

Allocation.id ● ID! non-null scalar miscellaneous

The ID of allocation.

Allocation.quantity ● Int! non-null scalar miscellaneous

Quantity allocated for orders.

Requires one of the following permissions: MANAGE_PRODUCTSMANAGE_ORDERS

Allocation.warehouse ● Warehouse! non-null object products

The warehouse were items were allocated.

Requires one of the following permissions: MANAGE_PRODUCTSMANAGE_ORDERS

Interfaces

Node interface miscellaneous

An object with an ID

Member Of

OrderLine object