Skip to content

Commit

Permalink
Fix example query in quickstart doc (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
ko-lem committed Feb 21, 2020
1 parent be97a36 commit ba5b7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Then we can start querying our **Schema** by passing a GraphQL query string to `
query_string = '{ hello }'
result = schema.execute(query_string)
print(result.data['hello'])
# "Hello stranger"
# "Hello stranger!"
# or passing the argument in the query
query_with_argument = '{ hello(name: "GraphQL") }'
Expand Down

0 comments on commit ba5b7dd

Please sign in to comment.