From e078de1ab52436d392a6294b913a292a20b77d83 Mon Sep 17 00:00:00 2001 From: Ammar Abbas Date: Mon, 2 Jun 2025 17:25:31 +0300 Subject: [PATCH] fix(docs): correct module reference in useQueryGraphStep tip (#12654) Corrected an inaccurate example in the useQueryGraphStep tip within the review workflow documentation. Updated the entity reference from "cart's promotions" to "product" to align with the actual code context. --- .../app/how-to-tutorials/tutorials/product-reviews/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/resources/app/how-to-tutorials/tutorials/product-reviews/page.mdx b/www/apps/resources/app/how-to-tutorials/tutorials/product-reviews/page.mdx index 0ea2ed2329..cb89a150a3 100644 --- a/www/apps/resources/app/how-to-tutorials/tutorials/product-reviews/page.mdx +++ b/www/apps/resources/app/how-to-tutorials/tutorials/product-reviews/page.mdx @@ -539,7 +539,7 @@ In the workflow's constructor function, you: -`useQueryGraphStep` uses [Query](!docs!/learn/fundamentals/module-links/query), which allows you to retrieve data across modules. For example, in the above snippet you're retrieving the cart's promotions, which are managed in the [Promotion Module](../../../commerce-modules/promotion/page.mdx), by passing `promotions.code` to the `fields` array. +`useQueryGraphStep` uses [Query](!docs!/learn/fundamentals/module-links/query), which allows you to retrieve data across modules. For example, in the above snippet you're retrieving the product, which is managed in the [Product Module](../../../commerce-modules/product/page.mdx), by passing `id` to the `fields` array.