@graphql-tools/stitching-directives 2.1.1 → 3.0.0-alpha-24ba9af0.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/stitching-directives",
3
- "version": "2.1.1",
3
+ "version": "3.0.0-alpha-24ba9af0.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/delegate": "^8.2.0",
11
- "@graphql-tools/utils": "^8.2.0",
10
+ "@graphql-tools/delegate": "9.0.0-alpha-24ba9af0.0",
11
+ "@graphql-tools/utils": "9.0.0-alpha-24ba9af0.0",
12
12
  "tslib": "~2.3.0"
13
13
  },
14
14
  "repository": {
package/es5/README.md DELETED
@@ -1,7 +0,0 @@
1
- Check API Reference for more information about this package;
2
- https://www.graphql-tools.com/docs/api/modules/stitching_directives_src
3
-
4
- You can also learn more about Schema Stitching Directives in this chapter;
5
- https://www.graphql-tools.com/docs/stitch-directives-sdl
6
-
7
-
@@ -1,2 +0,0 @@
1
- import { StitchingDirectivesFinalOptions } from './types';
2
- export declare const defaultStitchingDirectiveOptions: StitchingDirectivesFinalOptions;
@@ -1,7 +0,0 @@
1
- import { ValueNode } from 'graphql';
2
- declare type VariablePaths = Record<string, Array<string | number>>;
3
- export declare function extractVariables(inputValue: ValueNode): {
4
- inputValue: ValueNode;
5
- variablePaths: VariablePaths;
6
- };
7
- export {};
@@ -1,2 +0,0 @@
1
- import { StitchingDirectivesResult } from './stitchingDirectives';
2
- export declare function federationToStitchingSDL(federationSDL: string, stitchingConfig?: StitchingDirectivesResult): string;
@@ -1,3 +0,0 @@
1
- import { SelectionSetNode } from 'graphql';
2
- import { MappingInstruction } from './types';
3
- export declare function getSourcePaths(mappingInstructions: Array<MappingInstruction>, selectionSet?: SelectionSetNode): Array<Array<string>>;
package/es5/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from './stitchingDirectives';
2
- export * from './types';
3
- export * from './federationToStitchingSDL';