Merge pull request #460 from yixizhang/typo

fix typo in docs/execution
This commit is contained in:
Syrus Akbary 2017-04-26 23:58:17 -07:00 committed by GitHub
commit 23e028fe72

View File

@ -10,7 +10,7 @@ For executing a query a schema, you can directly call the ``execute`` method on
schema = graphene.Schema(...)
result = schema.execute('{ name }')
``result`` represents he result of execution. ``result.data`` is the result of executing the query, ``result.errors`` is ``None`` if no errors occurred, and is a non-empty list if an error occurred.
``result`` represents the result of execution. ``result.data`` is the result of executing the query, ``result.errors`` is ``None`` if no errors occurred, and is a non-empty list if an error occurred.
Context