File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Deferred Execution
33
44Often 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
2323to 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
2727There is ``experimental `` support for deferred execution in graphql-java.
2828
You can’t perform that action at this time.
0 commit comments