graphql-modules 3.1.0-alpha-20260116100328-40470793654d419be46eb908093c29996193eede → 3.1.0-alpha-20260116100415-a3905495171800fc1548db8fefdb1b79bfd26c5e
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-20260116100415-a3905495171800fc1548db8fefdb1b79bfd26c5e",
|
|
4
4
|
"description": "Create reusable, maintainable, testable and extendable GraphQL modules",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|