INPUT_OBJECT

CategorySortInput

Defines the sort order for the categories listing

link GraphQL Schema definition

  • input CategorySortInput {
  • # An ID that uniquely identifies the category
  • id: SortEnum
  • # An ID that uniquely identifies the parent category
  • parent_id: SortEnum
  • # Is active category
  • is_active: SortEnum
  • # The url key assigned to the category
  • url_key: SortEnum
  • # The url path assigned to the category
  • url_path: SortEnum
  • # The position of the category relative to other categories at the same level in
  • # tree
  • position: SortEnum
  • # Indicates the depth of the category within the tree
  • level: SortEnum
  • # Timestamp indicating when the category was created
  • created_at: SortEnum
  • # Timestamp indicating when the category was updated
  • updated_at: SortEnum
  • # The number of products in the category
  • product_count: SortEnum
  • # Include category to navigation menu
  • include_in_menu: SortEnum
  • }