Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
histhub
linker
Commits
abfacb93
Commit
abfacb93
authored
Jun 20, 2018
by
Tobias Steiner
Browse files
Just use the parsed values
parent
2f6478ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/neo4j-stream-writer.ts
View file @
abfacb93
...
...
@@ -23,8 +23,7 @@ class Neo4jStreamWriter extends Writable {
}
public
async
_write
(
chunk
,
encoding
,
callback
)
{
console
.
log
(
chunk
);
const
query
=
this
.
buildQuery
(
chunk
);
const
query
=
this
.
buildQuery
(
chunk
.
parsed
);
const
neo4jSession
:
Session
=
this
.
neo4j
.
session
();
try
{
await
neo4jSession
.
run
(
query
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment