quickstart: use print function in example query

This commit is contained in:
Nik Nyby 2017-10-04 23:09:18 -04:00 committed by GitHub
parent 2cc701f444
commit 37fbbf55fa

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!