From 723784bc2b80150294508f1049b023ab35b8f81a Mon Sep 17 00:00:00 2001 From: 38elements <38elements@users.noreply.github.com> Date: Mon, 6 May 2024 21:56:00 +0900 Subject: [PATCH] chore(docs): fix url for skipToken (#11832) Co-authored-by: Lenz Weber-Tronic --- docs/source/data/suspense.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/data/suspense.mdx b/docs/source/data/suspense.mdx index 3f5e0d0172e..d34e7bfc232 100644 --- a/docs/source/data/suspense.mdx +++ b/docs/source/data/suspense.mdx @@ -865,7 +865,7 @@ For more information, see the [`useSuspenseQuery`](../api/react/hooks/#usesuspen While `useSuspenseQuery` and `useBackgroundQuery` both have a `skip` option, that option is only present to ease migration from `useQuery` with as few code changes as possible. It should not be used in the long term. -Instead, you should use [`skipToken`](/react/api/react/hooks#skiptoken`): +Instead, you should use [`skipToken`](/react/api/react/hooks#skiptoken): ```js title="Recommended usage of skipToken with useSuspenseQuery" import { skipToken, useSuspenseQuery } from '@apollo/client';