Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
robrichard committed Sep 23, 2020
1 parent fe201cd commit 2aad050
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/Section 3 -- Type System.md
Original file line number Diff line number Diff line change
Expand Up @@ -1941,7 +1941,7 @@ inform the executor to delay the execution of the current fragment to indicate
deprioritization of the current fragment. A query with `@defer` directive will cause
the request to potentially return multiple responses, where non-deferred data is
delivered in the initial response and data deferred is delivered in a subsequent
response. `@include` and `@skip` take presedence over `@defer`.
response. `@include` and `@skip` take precedence over `@defer`.

```graphql example
query myQuery($shouldDefer: Boolean) {
Expand All @@ -1967,7 +1967,7 @@ directive @stream(label: String, initialCount: Int!, if: Boolean) on FIELD
The `@stream` directive may be provided for a field of `List` type so that the
backend can leverage technology such as asynchronous iterators to provide a partial
list in the initial response, and additional list items in subsequent responses.
`@include` and `@skip` take presedence over `@stream`.
`@include` and `@skip` take precedence over `@stream`.

```graphql example
query myQuery($shouldDefer: Boolean) {
Expand Down

0 comments on commit 2aad050

Please sign in to comment.