WarehouseItem
(OBJECT)
Product warehouse item
link GraphQL Schema definition
- type WarehouseItem {
- # Item internal ID
- ID! :
- # Quantity on stock
- Float :
- # Non blocked quantity on stock
- Float :
- # Warehouse identificator
- WarehouseNumber :
- # Product
- Product :
- # EAN
- Ean :
- # Weight
- Weight :
- # warehouse status of this variant
- # this may be NULL if warehouse status is determined by the main product's status
- WarehouseStatus :
- # Attributes making up the physical variant of the product
- Attribute] : [
- # Image path for specific warehouse item variant
- Url :
- # product variant's net price (excl. tax)
- # If not set, the product's main price is returned
- Price! :
- # Final price of product including tax, discounts and all other price components.
- Price :
- # Product variant packaging details, dimensions, weight and number of packages
- Package] : [
- }
link Require by
- Mutationset of methods and entities to create and/or modify entities with this API.
- ProductProduct
- Query Querying retrieves data (read access). Batching of multiple queries is not supported with this API. To modify data or perform operations @see Mutation defintion. As of GraphQL nature, for each query you need to specify fields returned. To make this simpler you may use predefined fragments of data (default datasets) which honor the _<ObjectName> convention. You may combine predefined fragments with specific field enumeration in your queries. @see fragments.graphql You may need to distinguish between cursors i.e. pageable lists of items (SomeobjectList objects) returned and simple sets of items (array of objects). General rule is that lists are used for 'content generated by public' and are retrieved by getObjectList queries, simple sets are used for 'items created/managed by administrator' and retrieved by listObjects calls. Please note for cursors you may not request more than 30 items at once (i.e. page size is limited to max. 30 items). Querying retrieves data (read access).
- WarehouseItemListpageable list of warehouse items (cursor)