Skip to content

Commit abe547f

Browse files
authored
Fix wrong variable name (#1015)
Resolves #1014
1 parent 0e8a3c5 commit abe547f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Then we can start querying our **Schema** by passing a GraphQL query string to `
130130
# "Hello stranger"
131131
132132
# or passing the argument in the query
133-
query_string_with_argument = '{ hello (name: "GraphQL") }'
133+
query_with_argument = '{ hello(name: "GraphQL") }'
134134
result = schema.execute(query_with_argument)
135135
print(result.data['hello'])
136136
# "Hello GraphQL!"

0 commit comments

Comments
 (0)