Merge pull request #560 from nikolas/patch-1

quickstart: use print function in example query
This commit is contained in:
Syrus Akbary 2017-10-05 11:38:06 +02:00 committed by GitHub
commit 7b08dbd2a1

View File

@ -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!