@graphql-mesh/transport-neo4j 0.1.1 → 0.1.2
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/package.json +3 -3
- package/typings/driver.d.cts +1 -1
- package/typings/driver.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-mesh/transport-neo4j",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"graphql": "*",
|
|
7
7
|
"tslib": "^2.4.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@graphql-mesh/transport-common": "^0.1.
|
|
11
|
-
"@graphql-mesh/types": "^0.97.
|
|
10
|
+
"@graphql-mesh/transport-common": "^0.1.2",
|
|
11
|
+
"@graphql-mesh/types": "^0.97.2",
|
|
12
12
|
"@graphql-tools/delegate": "^10.0.3",
|
|
13
13
|
"@graphql-tools/utils": "^10.0.13",
|
|
14
14
|
"@neo4j/graphql": "^5.0.0",
|
package/typings/driver.d.cts
CHANGED
|
@@ -5,4 +5,4 @@ export interface Neo4JDriverOpts {
|
|
|
5
5
|
auth?: Neo4JAuthOpts;
|
|
6
6
|
logger?: Logger;
|
|
7
7
|
}
|
|
8
|
-
export declare function getDriverFromOpts(opts: Neo4JDriverOpts): import("neo4j-driver
|
|
8
|
+
export declare function getDriverFromOpts(opts: Neo4JDriverOpts): import("neo4j-driver").Driver;
|
package/typings/driver.d.ts
CHANGED
|
@@ -5,4 +5,4 @@ export interface Neo4JDriverOpts {
|
|
|
5
5
|
auth?: Neo4JAuthOpts;
|
|
6
6
|
logger?: Logger;
|
|
7
7
|
}
|
|
8
|
-
export declare function getDriverFromOpts(opts: Neo4JDriverOpts): import("neo4j-driver
|
|
8
|
+
export declare function getDriverFromOpts(opts: Neo4JDriverOpts): import("neo4j-driver").Driver;
|