Skip to content

Commit ba5b7dd

Browse files
authored
Fix example query in quickstart doc (#1139)
1 parent be97a36 commit ba5b7dd

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
@@ -127,7 +127,7 @@ Then we can start querying our **Schema** by passing a GraphQL query string to `
127127
query_string = '{ hello }'
128128
result = schema.execute(query_string)
129129
print(result.data['hello'])
130-
# "Hello stranger"
130+
# "Hello stranger!"
131131
132132
# or passing the argument in the query
133133
query_with_argument = '{ hello(name: "GraphQL") }'

0 commit comments

Comments
 (0)