From ba4524eb73436125c39d75756880f1f53f0cd2b4 Mon Sep 17 00:00:00 2001 From: Ron Tseytlin <40004112+steveRoll-git@users.noreply.github.com> Date: Sun, 22 Feb 2026 20:53:56 +0200 Subject: [PATCH 1/2] Update use-query.md --- docs/openapi-react-query/use-query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/openapi-react-query/use-query.md b/docs/openapi-react-query/use-query.md index 6d3a05a33..3b0a47579 100644 --- a/docs/openapi-react-query/use-query.md +++ b/docs/openapi-react-query/use-query.md @@ -6,7 +6,7 @@ title: useQuery The `useQuery` method allows you to use the original [useQuery](https://tanstack.com/query/latest/docs/framework/react/guides/queries). - The result is the same as the original function. -- The `functionKey` is `[method, path, params]`. +- The query key is `[method, path, params]`. - `data` and `error` are fully typed. - You can pass queries options as fourth parameter. From a072180b5479c3c57e234d031ba1174f731296d8 Mon Sep 17 00:00:00 2001 From: Ron Tseytlin <40004112+steveRoll-git@users.noreply.github.com> Date: Sun, 22 Feb 2026 21:01:04 +0200 Subject: [PATCH 2/2] Fix minor typo in use-query.md --- docs/openapi-react-query/use-query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/openapi-react-query/use-query.md b/docs/openapi-react-query/use-query.md index 3b0a47579..e1cd3220f 100644 --- a/docs/openapi-react-query/use-query.md +++ b/docs/openapi-react-query/use-query.md @@ -8,7 +8,7 @@ The `useQuery` method allows you to use the original [useQuery](https://tanstack - The result is the same as the original function. - The query key is `[method, path, params]`. - `data` and `error` are fully typed. -- You can pass queries options as fourth parameter. +- You can pass query options as fourth parameter. ::: tip You can find more information about `useQuery` on the [@tanstack/react-query documentation](https://tanstack.com/query/latest/docs/framework/react/guides/queries).