Skip to content

Commit 2fe7914

Browse files
ma2gedevbbakerman
authored andcommitted
1 parent 8d02fc7 commit 2fe7914

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/defer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Deferred Execution
33

44
Often when executing a query you have two classes of data. The data you need immediately and the data that could arrive little bit later.
55

6-
For example imagine this query that gets data on a ``post` and its ``comments`` and ``reviews``.
6+
For example imagine this query that gets data on a ``post`` and its ``comments`` and ``reviews``.
77

88

99
.. code-block:: graphql
@@ -22,7 +22,7 @@ For example imagine this query that gets data on a ``post` and its ``comments``
2222
In this form, you *must* wait for the ``comments`` and ``reviews`` data to be retrieved before you can send the ``post`` data back
2323
to the client. All three data elements are bound to the one query
2424

25-
A naive approach would be to make two queries to gett he most important data first but there is now a better way.
25+
A naive approach would be to make two queries to get the most important data first but there is now a better way.
2626

2727
There is ``experimental`` support for deferred execution in graphql-java.
2828

0 commit comments

Comments
 (0)