Skip to content

Commit

Permalink
Merge pull request #560 from nikolas/patch-1
Browse files Browse the repository at this point in the history
quickstart: use print function in example query
  • Loading branch information
syrusakbary committed Oct 5, 2017
2 parents 9c10649 + 37fbbf5 commit 7b08dbd
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 @@ -52,6 +52,6 @@ Then we can start querying our schema:
.. code:: python
result = schema.execute('{ hello }')
print result.data['hello'] # "Hello stranger"
print(result.data['hello']) # "Hello stranger"
Congrats! You got your first graphene schema working!

0 comments on commit 7b08dbd

Please sign in to comment.