Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

InventoryEntry

Inventory allows you to track stock quantity per SKU and optionally per supply channel

export type InventoryEntry = Versioned & {
    __typename?: 'InventoryEntry';
    sku: Scalars['String'];
    quantityOnStock: Scalars['Long'];
    availableQuantity: Scalars['Long'];
    key?: Maybe<Scalars['String']>;
    restockableInDays?: Maybe<Scalars['Int']>;
    expectedDelivery?: Maybe<Scalars['DateTime']>;
    supplyChannel?: Maybe<Channel>;
    supplyChannelRef?: Maybe<Reference>;
    custom?: Maybe<CustomFieldsType>;
    id: Scalars['String'];
    version: Scalars['Long'];
    createdAt: Scalars['DateTime'];
    lastModifiedAt: Scalars['DateTime'];
    createdBy?: Maybe<Initiator>;
    lastModifiedBy?: Maybe<Initiator>;
};

Referenced Types

On this page