OBJECT
Category
link GraphQL Schema definition
- type Category {
- : ID! 
- #   Defines the order in which categories are displayed:
- #   The category with the lowest number is displayed at the top,
- #   and the category with the highest number at the bottom
- : Int! 
- # Arguments
- #   now: [Not documented]
- (: DateTime): Boolean! 
- #   Hidden categories are not visible in lists and menu,
- #   but can be accessed by direct link
- : Boolean! 
- : String! 
- : String! 
- : String! 
- : String 
- #   If the external link is specified it will be opened instead of category content
- : String! 
- : String! 
- #   If specified, all products, with price higher than specified,
- #   will be shown in this category
- : Float! 
- #   If specified, all products, with price lower than specified,
- #   will be shown in this category
- : Float! 
- : String 
- : String 
- : Float 
- #   Skip all negative discounts for products in this category
- #   (Discounts, Vouchers, Delivery ...)
- : Boolean! 
- : Boolean! 
- : DateTime 
- : Category 
- : Category 
- : [Category!]! 
- : Seo! 
- # Arguments
- #   pagination: [Not documented]
- #   sort: [Not documented]
- (: PaginationFilterInput, : ProductSorting): [Product!]! 
- : [CategoryAttribute!]! 
- }