Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
query-service
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GraphPolaris
Microservices
query-service
Commits
3188f102
Commit
3188f102
authored
3 months ago
by
Dorus
Browse files
Options
Downloads
Patches
Plain Diff
feat: added buffering to query input
parent
23224849
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/manual_mode/manualMode.ts
+19
-37
19 additions, 37 deletions
src/manual_mode/manualMode.ts
src/manual_mode/output.json
+4
-0
4 additions, 0 deletions
src/manual_mode/output.json
with
23 additions
and
37 deletions
src/manual_mode/manualMode.ts
+
19
−
37
View file @
3188f102
...
...
@@ -9,44 +9,28 @@ const rl = createInterface({
output
:
process
.
stdout
,
});
/*
* Queries to the database with the provided cypher query
*/
async
function
manualQuery
(
cypherQuery
:
string
,
outputFile
:
string
,
dbConnection
:
DbConnection
,
// Use DbConnection type here
dbConnection
:
DbConnection
,
)
{
// Use queryService to execute the query
const
result
=
await
queryService
(
dbConnection
,
cypherQuery
);
const
outputPath
=
path
.
join
(
__dirname
,
outputFile
);
// Write result to JSON file with pretty printing
fs
.
writeFileSync
(
outputPath
,
JSON
.
stringify
(
result
,
null
,
2
));
console
.
log
(
`Query results written to
${
outputPath
}
`
);
}
if
(
require
.
main
===
module
)
{
// Command-line args:
// 1st uri,
// 2nd username
// 3rd password
// 4th output file name
const
uri
:
string
=
process
.
argv
[
2
]
||
"
bolt://localhost:7687
"
;
const
username
:
string
=
process
.
argv
[
3
]
||
"
neo4j
"
;
const
password
:
string
=
process
.
argv
[
4
]
||
"
password
"
;
const
outputFile
:
string
=
process
.
argv
[
5
]
||
"
output.json
"
;
// splits up the url in order to agree with the api
const
[
protocol
,
...
rest
]
=
uri
.
split
(
"
://
"
);
const
url
=
`://
${
rest
.
join
(
"
://
"
)}
`
;
// Create the DbConnection object
const
dbConfig
:
DbConnection
=
{
id
:
1
,
internalDatabaseName
:
"
neo4j
"
,
...
...
@@ -58,28 +42,26 @@ if (require.main === module) {
type
:
"
neo4j
"
,
};
console
.
log
(
'
Type a Cypher query to query or type "exit" to exit
'
);
// Recursive function that asks for queries to execute
const
promptQuery
=
()
=>
{
rl
.
question
(
"
query:
"
,
async
(
cypherQuery
)
=>
{
if
(
cypherQuery
.
toLowerCase
()
===
"
exit
"
)
{
console
.
log
(
"
Connection closed. Exiting...
"
);
rl
.
close
();
process
.
exit
();
}
console
.
log
(
'
Type a Cypher query line by line. Type "RUN" on a new line to execute the query.
'
);
let
queryBuffer
:
string
[]
=
[];
// Buffer to store multi-line queries
rl
.
on
(
"
line
"
,
async
(
line
:
string
)
=>
{
if
(
line
.
trim
().
toLowerCase
()
===
"
exit
"
)
{
console
.
log
(
"
Exiting...
"
);
rl
.
close
();
process
.
exit
();
}
else
if
(
line
.
trim
().
toLowerCase
()
===
"
run
"
)
{
const
fullQuery
=
queryBuffer
.
join
(
"
\n
"
);
queryBuffer
=
[];
// Clear buffer for next input
try
{
// Perform query and write output to file
await
manualQuery
(
cypherQuery
,
outputFile
,
dbConfig
);
await
manualQuery
(
fullQuery
,
outputFile
,
dbConfig
);
}
catch
(
err
)
{
console
.
error
(
"
Error executing query:
"
,
err
);
}
promptQuery
();
// Await next prompt
});
};
promptQuery
();
}
else
{
queryBuffer
.
push
(
line
);
}
});
}
This diff is collapsed.
Click to expand it.
src/manual_mode/output.json
+
4
−
0
View file @
3188f102
{
"nodes"
:
[],
"edges"
:
[]
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment