@graphql-mesh/transport-neo4j 0.10.25 → 0.10.26

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/executor.js CHANGED
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getNeo4JExecutor = getNeo4JExecutor;
4
4
  exports.getExecutableSchemaFromTypeDefsAndDriver = getExecutableSchemaFromTypeDefsAndDriver;
5
5
  const graphql_1 = require("graphql");
6
- const graphql_scalars_1 = require("graphql-scalars");
7
6
  const types_1 = require("@graphql-mesh/types");
8
7
  const utils_1 = require("@graphql-mesh/utils");
9
8
  const delegate_1 = require("@graphql-tools/delegate");
@@ -109,9 +108,6 @@ function getExecutableSchemaFromTypeDefsAndDriver({ driver, pubsub: meshOrHivePu
109
108
  driver,
110
109
  validate: false,
111
110
  debug: !!process.env.DEBUG,
112
- resolvers: {
113
- BigInt: graphql_scalars_1.GraphQLBigInt,
114
- },
115
111
  features,
116
112
  });
117
113
  return neo4jGraphQL.getSchema();
package/esm/executor.js CHANGED
@@ -1,5 +1,4 @@
1
1
  import { extendSchema, parse, visit } from 'graphql';
2
- import { GraphQLBigInt } from 'graphql-scalars';
3
2
  import { toMeshPubSub } from '@graphql-mesh/types';
4
3
  import { makeAsyncDisposable } from '@graphql-mesh/utils';
5
4
  import { createDefaultExecutor } from '@graphql-tools/delegate';
@@ -105,9 +104,6 @@ export function getExecutableSchemaFromTypeDefsAndDriver({ driver, pubsub: meshO
105
104
  driver,
106
105
  validate: false,
107
106
  debug: !!process.env.DEBUG,
108
- resolvers: {
109
- BigInt: GraphQLBigInt,
110
- },
111
107
  features,
112
108
  });
113
109
  return neo4jGraphQL.getSchema();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-mesh/transport-neo4j",
3
- "version": "0.10.25",
3
+ "version": "0.10.26",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"
@@ -13,7 +13,6 @@
13
13
  "@graphql-tools/delegate": "^12.0.8",
14
14
  "@graphql-tools/utils": "^11.0.0",
15
15
  "@neo4j/graphql": "^7.4.3",
16
- "graphql-scalars": "^1.22.4",
17
16
  "neo4j-driver": "^6.0.1",
18
17
  "tslib": "^2.4.0"
19
18
  },