Skip to content

chore(content): fix typos #1284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/content/blog/2020-12-08-defer-stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ query {
person(id: "cGVvcGxlOjE=") {
name
...HomeworldFragment @defer(label: "homeworldDefer")
}
}

fragment HomeworldFragment on Person {
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2022-11-07-graphql-http.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fallen behind.
Luckily, thanks to the focused efforts of [Denis Badurina](https://github.com/enisdenjo),
we have an alternative in [graphql-http](https://github.com/graphql/graphql-http).
Denis has been part of the committee working on the GraphQL over HTTP
specification, and sought to build a depenency-free compliant GraphQL server
specification, and sought to build a dependency-free compliant GraphQL server
that works with most all existing Node and Deno HTTP frameworks.

The decision was made to adopt the [graphql-http](https://github.com/graphql/graphql-http)
Expand Down
1 change: 1 addition & 0 deletions src/content/learn/BestPractice-NodeInterface.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ objects "nodes." Here is an example query for a node:
name
}
}
}
```

- The GraphQL schema is formatted to allow fetching any object via the `node` field on the root query object. This
Expand Down