From f4ecb673513ea1e4a807b687c79a2320bd0a0e43 Mon Sep 17 00:00:00 2001 From: Jeongseok Kang Date: Mon, 5 Aug 2024 05:23:39 +0900 Subject: [PATCH] Fix minor typo in relay guide docs (#3586) --- docs/guides/relay.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/relay.mdx b/docs/guides/relay.mdx index d1246462f3..394583abcf 100644 --- a/docs/guides/relay.mdx +++ b/docs/guides/relay.mdx @@ -194,7 +194,7 @@ The connection resolver for `relay.ListConnection` should return one of those: As demonstrated above, the `Node` field can be used to retrieve/refetch any object in the schema that implements the `Node` interface. -It can be defined in in the `Query` objects in 4 ways: +It can be defined in the `Query` objects in 4 ways: - `node: Node`: This will define a field that accepts a `GlobalID!` and returns a `Node` instance. This is the most basic way to define it.