From 14896a27ee1574a69bf197c52cf45d51d8a7378e Mon Sep 17 00:00:00 2001 From: 2bdulra7manRea Date: Mon, 3 Feb 2025 22:50:03 +0200 Subject: [PATCH] Fix argument example: Update Query to request Human instead of Droid --- src/pages/learn/queries.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/learn/queries.mdx b/src/pages/learn/queries.mdx index b34e103c07..ce9c7ca617 100644 --- a/src/pages/learn/queries.mdx +++ b/src/pages/learn/queries.mdx @@ -55,7 +55,7 @@ If the only thing we could do was traverse objects and their fields, GraphQL wou ```graphql type Query { - droid(id: ID!): Droid + human(id: ID!): Human } ```