graphql 16.7.1 → 16.8.0

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": "graphql",
3
- "version": "16.7.1",
3
+ "version": "16.8.0",
4
4
  "description": "A Query Language and Runtime which can target any service.",
5
5
  "license": "MIT",
6
6
  "main": "index",
@@ -122,6 +122,14 @@ function getIntrospectionQuery(options) {
122
122
  ofType {
123
123
  kind
124
124
  name
125
+ ofType {
126
+ kind
127
+ name
128
+ ofType {
129
+ kind
130
+ name
131
+ }
132
+ }
125
133
  }
126
134
  }
127
135
  }
@@ -115,6 +115,14 @@ export function getIntrospectionQuery(options) {
115
115
  ofType {
116
116
  kind
117
117
  name
118
+ ofType {
119
+ kind
120
+ name
121
+ ofType {
122
+ kind
123
+ name
124
+ }
125
+ }
118
126
  }
119
127
  }
120
128
  }
package/version.js CHANGED
@@ -10,7 +10,7 @@ exports.versionInfo = exports.version = void 0;
10
10
  /**
11
11
  * A string containing the version of the GraphQL.js library
12
12
  */
13
- const version = '16.7.1';
13
+ const version = '16.8.0';
14
14
  /**
15
15
  * An object containing the components of the GraphQL.js version string
16
16
  */
@@ -18,8 +18,8 @@ const version = '16.7.1';
18
18
  exports.version = version;
19
19
  const versionInfo = Object.freeze({
20
20
  major: 16,
21
- minor: 7,
22
- patch: 1,
21
+ minor: 8,
22
+ patch: 0,
23
23
  preReleaseTag: null,
24
24
  });
25
25
  exports.versionInfo = versionInfo;
package/version.mjs CHANGED
@@ -4,14 +4,14 @@
4
4
  /**
5
5
  * A string containing the version of the GraphQL.js library
6
6
  */
7
- export const version = '16.7.1';
7
+ export const version = '16.8.0';
8
8
  /**
9
9
  * An object containing the components of the GraphQL.js version string
10
10
  */
11
11
 
12
12
  export const versionInfo = Object.freeze({
13
13
  major: 16,
14
- minor: 7,
15
- patch: 1,
14
+ minor: 8,
15
+ patch: 0,
16
16
  preReleaseTag: null,
17
17
  });