@graphql-mesh/neo4j 0.19.0-alpha-d63361380.0 → 1.0.0-alpha-20220804093904-8e2e41f7f

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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/index.mjs +1 -1
  3. package/package.json +7 -7
package/index.js CHANGED
@@ -42,7 +42,7 @@ class Neo4JHandler {
42
42
  this.importFn = importFn;
43
43
  }
44
44
  getCachedTypeDefs(driver) {
45
- return this.typeDefs.getWithSet(() => {
45
+ return this.typeDefs.getWithSet(async () => {
46
46
  if (this.config.typeDefs) {
47
47
  return utils.readFileOrUrl(this.config.typeDefs, {
48
48
  cwd: this.baseDir,
package/index.mjs CHANGED
@@ -38,7 +38,7 @@ class Neo4JHandler {
38
38
  this.importFn = importFn;
39
39
  }
40
40
  getCachedTypeDefs(driver) {
41
- return this.typeDefs.getWithSet(() => {
41
+ return this.typeDefs.getWithSet(async () => {
42
42
  if (this.config.typeDefs) {
43
43
  return readFileOrUrl(this.config.typeDefs, {
44
44
  cwd: this.baseDir,
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@graphql-mesh/neo4j",
3
- "version": "0.19.0-alpha-d63361380.0",
3
+ "version": "1.0.0-alpha-20220804093904-8e2e41f7f",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
+ "@graphql-mesh/types": "0.79.0-alpha-20220804093904-8e2e41f7f",
7
+ "@graphql-mesh/utils": "1.0.0-alpha-20220804093904-8e2e41f7f",
6
8
  "graphql": "*"
7
9
  },
8
10
  "dependencies": {
9
11
  "@graphql-mesh/cross-helpers": "0.2.0",
10
- "@graphql-mesh/store": "0.9.0-alpha-d63361380.0",
11
- "@graphql-mesh/types": "0.79.0-alpha-d63361380.0",
12
- "@graphql-mesh/utils": "0.37.5-alpha-d63361380.0",
13
- "@graphql-tools/utils": "8.8.0",
14
- "@neo4j/graphql": "3.6.0",
12
+ "@graphql-mesh/store": "1.0.0-alpha-20220804093904-8e2e41f7f",
13
+ "@graphql-tools/utils": "8.9.0",
14
+ "@neo4j/graphql": "3.6.1",
15
15
  "@neo4j/introspector": "^1.0.1",
16
- "neo4j-driver": "4.4.6",
16
+ "neo4j-driver": "4.4.7",
17
17
  "tslib": "^2.4.0"
18
18
  },
19
19
  "repository": {