Skip to content
Snippets Groups Projects
Commit 54775349 authored by Dorus's avatar Dorus
Browse files

created args structure

parent 35645786
No related branches found
No related tags found
No related merge requests found
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)
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment