Product
(OBJECT)
Product
link GraphQL Schema definition
- type Product {
- # Product internal ID
- ID! :
- # Main product title
- String :
- # Producer
- Producer :
- # Main product image
- Url :
- # Link to the eshop product
- Url! :
- # Short description (only plain text)
- String :
- # Long description (allowed html format)
- String :
- # Main product category
- Category :
- # Attribute category
- Category :
- # Assigned to categories
- Category] : [
- # Product EAN
- Ean :
- # Display the product in the store to customers
- Boolean! :
- # Product identificator from supplier or data source
- String :
- # Product net price (excl. tax)
- Price :
- # Final price of product including tax, discounts and all other price components.
- Price :
- # Warehouse item
- WarehouseItem] : [
- # Attributes
- Attribute] : [
- # Tax rate for currency price
- Percentage :
- # Product image gallery
- Url] : [
- }
link Require by
- OrderItemProduct contained within order
- ProductListpageable list of products (cursor)
- 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