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

changed dependencies

parent 6103f581
No related branches found
No related tags found
No related merge requests found
import { query2Cypher } from "./utils/cypher/converter";
import { parseCypherQuery } from "./utils/cypher/queryParser";
args = process.argv.slice(2)
query2Cypher(message)
import { parseCypherQuery } from "./utils/cypher/queryParser";
import { type GraphQueryResultFromBackend } from "ts-common";
import { type QueryExecutionTypes } from "./variables";
import { queryService } from "./readers/queryService.ts"
import { Neo4jConnection, type DbConnection } from "ts-common";
function processQuery(query: string) {
queryService(query)
console.log(query)
}
let input_args: string = process.argv.slice(2)[0]
processQuery(input_args)
import { Neo4jConnection } from 'ts-common';
import { queryService } from './queryService';
import * as fs from 'fs';
import path from 'path';
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