From 158aca9f07a5213e189324a291ca8eecd673b1bc Mon Sep 17 00:00:00 2001 From: Remy Wang <69775411+remy727@users.noreply.github.com> Date: Mon, 16 May 2022 11:36:30 -0400 Subject: [PATCH] Fix: update argument in executing GraphQL query (#958) --- docs/usage/graphql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage/graphql.md b/docs/usage/graphql.md index f6fd67948..5d0fabf0b 100644 --- a/docs/usage/graphql.md +++ b/docs/usage/graphql.md @@ -54,7 +54,7 @@ variables = { first: 3 } -response = client.query(data: query, variables: variables) +response = client.query(query: query, variables: variables) ```