graphql-modules 3.1.0-alpha-20260116090941-3edc375f094ca18ea201012c999a1cb55d9853c4 → 3.1.0-alpha-20260116091014-dfd629e41d938c73e2e61900d9553f91fa29f65c
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/index.js +4 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
const wrap = require('@graphql-tools/wrap');
|
|
8
|
-
const ramda = require('ramda');
|
|
3
|
+
var schema = require('@graphql-tools/schema');
|
|
4
|
+
var graphql = require('graphql');
|
|
5
|
+
var wrap = require('@graphql-tools/wrap');
|
|
6
|
+
var ramda = require('ramda');
|
|
9
7
|
|
|
10
8
|
const ERROR_ORIGINAL_ERROR = 'diOriginalError';
|
|
11
9
|
function getOriginalError(error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphql-modules",
|
|
3
|
-
"version": "3.1.0-alpha-
|
|
3
|
+
"version": "3.1.0-alpha-20260116091014-dfd629e41d938c73e2e61900d9553f91fa29f65c",
|
|
4
4
|
"description": "Create reusable, maintainable, testable and extendable GraphQL modules",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|