@graphql-tools/executor-yoga 2.0.1 → 2.0.2-alpha-20231020214310-54ac7757
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/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +3 -3
package/cjs/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.useExecutor = void 0;
|
|
4
|
-
const wrap_1 = require("@graphql-tools/wrap");
|
|
5
4
|
const executor_envelop_1 = require("@graphql-tools/executor-envelop");
|
|
5
|
+
const wrap_1 = require("@graphql-tools/wrap");
|
|
6
6
|
function useExecutor(executor) {
|
|
7
7
|
let schema;
|
|
8
8
|
return {
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { schemaFromExecutor } from '@graphql-tools/wrap';
|
|
2
1
|
import { useExecutor as useEnvelopExecutor } from '@graphql-tools/executor-envelop';
|
|
2
|
+
import { schemaFromExecutor } from '@graphql-tools/wrap';
|
|
3
3
|
export function useExecutor(executor) {
|
|
4
4
|
let schema;
|
|
5
5
|
return {
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/executor-yoga",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2-alpha-20231020214310-54ac7757",
|
|
4
4
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"graphql": "^15.2.0 || ^16.0.0",
|
|
8
|
-
"graphql-yoga": "^3.5.1 || ^4.0.0"
|
|
8
|
+
"graphql-yoga": "^3.5.1 || ^4.0.0 || ^5.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@graphql-tools/executor-envelop": "^2.0.0",
|
|
12
|
-
"@graphql-tools/wrap": "^10.0.0",
|
|
13
12
|
"@graphql-tools/utils": "^10.0.1",
|
|
13
|
+
"@graphql-tools/wrap": "^10.0.0",
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|