GraphQL OBJECT
ProductCategory
Category of the product.
link Definition
- type ProductCategory {
- # Product category ID.
- : Long!
- # Product category name.
- : String
- # Unique ID of sales tax code.
- : SalesTaxCodeEnum
- # Parent product category.
- : ProductCategory
- # Child product catagories.
- : [ProductCategory]
- # Product category enabled.
- : Boolean!
- }