@graphql-tools/load 7.5.0 → 7.5.2-alpha-b935d9b2.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/documents.d.ts CHANGED
@@ -9,7 +9,7 @@ export declare const OPERATION_KINDS: KindList;
9
9
  /**
10
10
  * Kinds of AST nodes that are included in type system definition documents
11
11
  */
12
- export declare const NON_OPERATION_KINDS: Kind[];
12
+ export declare const NON_OPERATION_KINDS: KindList;
13
13
  /**
14
14
  * Asynchronously loads executable documents (i.e. operations and fragments) from
15
15
  * the provided pointers. The pointers may be individual files or a glob pattern.
package/index.js CHANGED
@@ -500,6 +500,7 @@ const CONCURRENCY_LIMIT$1 = 100;
500
500
  * Asynchronously loads any GraphQL documents (i.e. executable documents like
501
501
  * operations and fragments as well as type system definitions) from the
502
502
  * provided pointers.
503
+ * loadTypedefs does not merge the typeDefs when `#import` is used ( https://github.com/ardatan/graphql-tools/issues/2980#issuecomment-1003692728 )
503
504
  * @param pointerOrPointers Pointers to the sources to load the documents from
504
505
  * @param options Additional options
505
506
  */
package/index.mjs CHANGED
@@ -475,6 +475,7 @@ const CONCURRENCY_LIMIT$1 = 100;
475
475
  * Asynchronously loads any GraphQL documents (i.e. executable documents like
476
476
  * operations and fragments as well as type system definitions) from the
477
477
  * provided pointers.
478
+ * loadTypedefs does not merge the typeDefs when `#import` is used ( https://github.com/ardatan/graphql-tools/issues/2980#issuecomment-1003692728 )
478
479
  * @param pointerOrPointers Pointers to the sources to load the documents from
479
480
  * @param options Additional options
480
481
  */
@@ -16,6 +16,7 @@ export declare type UnnormalizedTypeDefPointer = {
16
16
  * Asynchronously loads any GraphQL documents (i.e. executable documents like
17
17
  * operations and fragments as well as type system definitions) from the
18
18
  * provided pointers.
19
+ * loadTypedefs does not merge the typeDefs when `#import` is used ( https://github.com/ardatan/graphql-tools/issues/2980#issuecomment-1003692728 )
19
20
  * @param pointerOrPointers Pointers to the sources to load the documents from
20
21
  * @param options Additional options
21
22
  */
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/load",
3
- "version": "7.5.0",
3
+ "version": "7.5.2-alpha-b935d9b2.0",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
7
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/schema": "8.3.1",
11
- "@graphql-tools/utils": "^8.5.5",
10
+ "@graphql-tools/schema": "8.3.2-alpha-b935d9b2.0",
11
+ "@graphql-tools/utils": "8.6.1-alpha-b935d9b2.0",
12
12
  "p-limit": "3.1.0",
13
13
  "tslib": "~2.3.0"
14
14
  },
@@ -33,6 +33,7 @@
33
33
  "./*": {
34
34
  "require": "./*.js",
35
35
  "import": "./*.mjs"
36
- }
36
+ },
37
+ "./package.json": "./package.json"
37
38
  }
38
39
  }