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
54775349
Commit
54775349
authored
3 months ago
by
Dorus
Browse files
Options
Downloads
Patches
Plain Diff
created args structure
parent
35645786
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/manual_mode/manualMode.ts
+25
-1
25 additions, 1 deletion
src/manual_mode/manualMode.ts
with
25 additions
and
1 deletion
src/manual_mode/manualMode.ts
+
25
−
1
View file @
54775349
import
{
Neo4jConnection
}
from
'
ts-common
'
;
import
{
queryService
}
from
'
./queryService
'
;
import
{
queryService
}
from
'
.
.
/queryService
'
;
import
*
as
fs
from
'
fs
'
;
import
path
from
'
path
'
;
import
argv
from
"
process
"
import
{
createInterface
}
from
'
readline
'
;
function
manualQuery
(
cypherQuery
:
string
,
outputFile
:
string
)
{
return
`
${
cypherQuery
}
${
outputFile
}
`
}
if
(
require
.
main
===
module
)
{
// Command-line args:
// 1st query,
// 2nd output file
const
cypherQuery
:
string
=
process
.
argv
[
2
]
||
'
MATCH (n) RETURN n LIMIT 10
'
;
// Default query if none provided
const
outputFile
:
string
=
process
.
argv
[
3
]
||
'
output.json
'
;
// Default output file if none provided
if
(
!
cypherQuery
||
!
outputFile
)
{
console
.
log
(
'
Please provide a valid Cypher query and output file name.
'
);
process
.
exit
(
1
);
}
let
out
:
string
=
manualQuery
(
cypherQuery
,
outputFile
);
console
.
log
(
out
)
}
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