WarehouseStatus
(OBJECT)
Warehouse status definition
link GraphQL Schema definition
- type WarehouseStatus implements IStatus {
- # Internal warehouse status ID
- ID! :
- # Status name
- String! :
- # RGB color in hexa notation (e.g. #A45594)
- Color :
- # Status image
- Url :
- # text note
- String :
- # allow ordering of item having this WH status
- Boolean! :
- # show product on public e-shop
- Boolean! :
- # default delivery in days
- Int :
- # daily deadline for propagated delivery
- # You must place order before the time of day (specific hour) to be entitled for
- # the 'delivery_in_days' expected delivery.
- TimeOfDay :
- }
link Require by
- 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).
- WarehouseItemProduct warehouse item