GraphQL OBJECT
CatalogItem
Item in the catalog.
link Definition
- type CatalogItem {
- # Id of the catalog item.
- : Int!
- # The product of the item.
- : Product
- # The product selection if the item.
- : ProductSelection
- # Parent of the item, if existing.
- : CatalogItem
- # Children of the item.
- : [CatalogItem]
- # Position of the catalog item.
- : Int!
- # ParameterName of the catalog item.
- : String
- # Group catalog item belongs to.
- : CatalogItemGroup
- # Date and time when the catalog item was created.
- : DateTime!
- # User who created the catalog item.
- : UserAccount!
- # Date and time when the last edit occurred.
- : DateTime!
- # User who last edited the catalog item.
- : UserAccount!
- # Catalog of the catalog item.
- : Catalog
- # Names of the catalog item.
- : [LocalizedString]
- # Descriptions of the catalog item.
- : [LocalizedString]
- # MetaDescription of the catalog item.
- : [LocalizedString]
- # MetaKeywords of the catalog item.
- : [LocalizedString]
- # MetaTitle of the catalog item.
- : [LocalizedClientWebbinary]
- # ProductDescription of the catalog item.
- : [LocalizedString]
- # ProductShortDescription of the catalog item.
- : [LocalizedString]
- # Small image of the catalog item.
- : [LocalizedClientWebbinary]
- # Medium image of the catalog item.
- : [LocalizedClientWebbinary]
- # Large image of the catalog item.
- : [LocalizedClientWebbinary]
- # Keywords that are appended to every URL generated for its category in the
- # catalog.
- : String
- # URL pointing to the catalog page.
- : String
- }