Skip to content

Commit

Permalink
Merge branch 'main' into release-3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamn committed Jun 2, 2021
2 parents 8c80f1c + 67fe4e8 commit f12dc3b
Show file tree
Hide file tree
Showing 10 changed files with 399 additions and 108 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
Filesize:
docker:
- image: circleci/node:15
- image: circleci/node:16
steps:
- checkout
- restore_cache:
Expand All @@ -26,7 +26,7 @@ jobs:

Tests:
docker:
- image: circleci/node:15
- image: circleci/node:16
steps:
- checkout
- restore_cache:
Expand Down
1 change: 1 addition & 0 deletions docs/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = {
'data/subscriptions',
'data/fragments',
'data/error-handling',
'data/operation-best-practices'
],
Caching: [
'caching/cache-configuration',
Expand Down
115 changes: 57 additions & 58 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
},
"dependencies": {
"gatsby": "2.32.13",
"gatsby-theme-apollo-docs": "4.7.4",
"react": "17.0.1",
"gatsby-theme-apollo-docs": "4.7.9",
"react": "17.0.2",
"react-dom": "17.0.1",
"webpack-virtual-modules": "0.4.2"
"webpack-virtual-modules": "0.4.3"
},
"devDependencies": {
"typedoc": "0.15.8",
Expand Down
1 change: 1 addition & 0 deletions docs/source/api/link/apollo-link-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,4 @@ The `SchemaLink` constructor can be called with an object with the following pro
| `schema` | An executable graphql schema |
| `rootValue` | The root value that is passed to the resolvers (i.e. the first parameter for the [rootQuery](http://graphql.org/learn/execution/#root-fields-resolvers)) |
| `context` | An object passed to the resolvers, following the [graphql specification](http://graphql.org/learn/execution/#root-fields-resolvers) or a function that accepts the operation and returns the resolver context. The resolver context may contain all the data-fetching connectors for an operation. |
| `validate` | Enable validation of incoming queries against the local schema before execution, returning validation errors in `result.errors`, just like a non-local GraphQL endpoint typically would. |
Loading

0 comments on commit f12dc3b

Please sign in to comment.