You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/execution/execute.rst
-38Lines changed: 0 additions & 38 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
Executing a query
4
4
=================
5
5
6
-
7
6
For executing a query against a schema, you can directly call the ``execute`` method on it.
8
7
9
8
@@ -17,43 +16,6 @@ For executing a query against a schema, you can directly call the ``execute`` me
17
16
``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.
18
17
19
18
20
-
For executing a subscription, you can directly call the ``subscribe`` method on it.
21
-
This method is async and must be awaited.
22
-
23
-
.. code:: python
24
-
25
-
import asyncio
26
-
from datetime import datetime
27
-
from graphene import ObjectType, String, Schema, Field
0 commit comments