@strapi/plugin-graphql 4.0.0-next.14 → 4.0.0-next.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-graphql",
3
- "version": "4.0.0-next.14",
3
+ "version": "4.0.0-next.18",
4
4
  "description": "Adds GraphQL endpoint with default API methods.",
5
5
  "strapi": {
6
6
  "displayName": "GraphQL",
@@ -16,7 +16,7 @@
16
16
  "@apollo/federation": "^0.28.0",
17
17
  "@graphql-tools/schema": "8.1.2",
18
18
  "@graphql-tools/utils": "^8.0.2",
19
- "@strapi/utils": "4.0.0-next.14",
19
+ "@strapi/utils": "4.0.0-next.18",
20
20
  "apollo-server-core": "3.1.2",
21
21
  "apollo-server-koa": "3.1.2",
22
22
  "glob": "^7.1.7",
@@ -53,5 +53,5 @@
53
53
  "npm": ">=6.0.0"
54
54
  },
55
55
  "license": "SEE LICENSE IN LICENSE",
56
- "gitHead": "9b2bc8ed5d39e6b7c3a1b0767b73028b5292467b"
56
+ "gitHead": "3276216796b9b4918a3ad4ab633d41f1fa241256"
57
57
  }
@@ -15,7 +15,7 @@ const merge = mergeWith((a, b) => {
15
15
  }
16
16
  });
17
17
 
18
- module.exports = async strapi => {
18
+ module.exports = async ({ strapi }) => {
19
19
  // Generate the GraphQL schema for the content API
20
20
  const schema = strapi
21
21
  .plugin('graphql')