From 55cd3f41d1cc0403311c2921cd7ddc1e73ed24ab Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Fri, 27 Nov 2020 13:20:54 -0600 Subject: [PATCH] GraphQL: Add staging attribute --- src/guides/v2.4/graphql/interfaces/category-interface.md | 1 + src/guides/v2.4/graphql/interfaces/product-interface.md | 1 + 2 files changed, 2 insertions(+) diff --git a/src/guides/v2.4/graphql/interfaces/category-interface.md b/src/guides/v2.4/graphql/interfaces/category-interface.md index 43261ec1abb..fb33b9c1c45 100644 --- a/src/guides/v2.4/graphql/interfaces/category-interface.md +++ b/src/guides/v2.4/graphql/interfaces/category-interface.md @@ -27,6 +27,7 @@ Attribute | Type | Description `position` | Int | The position of the category relative to other categories at the same level in tree `product_count` | Int | The number of products in the category that are marked as visible. By default, in complex products, parent products are visible, but their child products are not `products()` | CategoryProducts | The list of products assigned to the category +`staged` | Boolean! | Indicates whether the category is staged for a future campaign `updated_at` | String | Timestamp indicating when the category was updated `url_key` | String | The URL key assigned to the category `url_path` | String | The URL path assigned to the category diff --git a/src/guides/v2.4/graphql/interfaces/product-interface.md b/src/guides/v2.4/graphql/interfaces/product-interface.md index dd885643331..b67658ab8fb 100644 --- a/src/guides/v2.4/graphql/interfaces/product-interface.md +++ b/src/guides/v2.4/graphql/interfaces/product-interface.md @@ -60,6 +60,7 @@ Attribute | Data type | Description `special_from_date` | String | The beginning date that a product has a special price `special_price` | Float | The discounted price of the product `special_to_date` | String | The end date that a product has a special price +`staged` | Boolean! | Indicates whether the product is staged for a future campaign `stock_status` | ProductStockStatus | The status of the stock. `ProductStockStatus` is an enumeration that can have the value of `IN_STOCK` or `OUT_OF_STOCK`. This attribute is defined in the `InventoryGraphQl` module. `swatch_image` | String | The file name of a swatch image. This attribute is defined in the `SwatchesGraphQl` module. `tax_class_id` | Int | An ID assigned to a tax class. This attribute is defined in the `TaxGraphQl` module.