From fb805d13b17c575c0ab6823a002fdc77854b5b4a Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Wed, 19 Jun 2019 11:13:14 +0100 Subject: [PATCH] Fix wrong variable name Resolves #1014 --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 7be910b4..be2a1c82 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -130,7 +130,7 @@ Then we can start querying our **Schema** by passing a GraphQL query string to ` # "Hello stranger" # or passing the argument in the query - query_string_with_argument = '{ hello (name: "GraphQL") }' + query_with_argument = '{ hello(name: "GraphQL") }' result = schema.execute(query_with_argument) print(result.data['hello']) # "Hello GraphQL!"