OBJECT

Category

link GraphQL Schema definition

  • type Category {
  • #
  • id: 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
  • position: Int!
  • #
  • #
  • # Arguments
  • # now: [Not documented]
  • active(now: DateTime): Boolean!
  • # Hidden categories are not visible in lists and menu,
  • # but can be accessed by direct link
  • hidden: Boolean!
  • #
  • title: String!
  • #
  • shortDescription: String!
  • #
  • longDescription: String!
  • #
  • thumbnail: String
  • # If the external link is specified it will be opened instead of category content
  • externalLink: String!
  • #
  • template: String!
  • # If specified, all products, with price higher than specified,
  • # will be shown in this category
  • priceFrom: Float!
  • # If specified, all products, with price lower than specified,
  • # will be shown in this category
  • priceTo: Float!
  • #
  • icon: String
  • #
  • promotionIcon: String
  • #
  • vat: Float
  • # Skip all negative discounts for products in this category
  • # (Discounts, Vouchers, Delivery ...)
  • skipDiscount: Boolean!
  • #
  • showSuffix: Boolean!
  • #
  • timestamp: DateTime
  • #
  • parent: Category
  • #
  • root: Category
  • #
  • children: [Category!]!
  • #
  • seo: Seo!
  • #
  • #
  • # Arguments
  • # pagination: [Not documented]
  • # sort: [Not documented]
  • products(pagination: PaginationFilterInput, sort: ProductSorting): [Product!]!
  • }