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

created manual mode

parent 29734840
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)
......@@ -28,6 +28,9 @@ export function parseCypherQuery(result: Record[], returnType: "nodelink" | "tab
throw err;
}
}
function parseNodeLinkQuery(results: Record[]): GraphQueryResultFromBackend {
let nodes: NodeQueryResult[] = [];
let edges: EdgeQueryResult[] = [];
......@@ -46,6 +49,8 @@ function parseNodeLinkQuery(results: Record[]): GraphQueryResultFromBackend {
return result;
}
function parseNodeLinkEntity(res: Node | Relationship | Path | PathSegment, nodes: NodeQueryResult[], edges: EdgeQueryResult[], nodeIds: Set<string>, edgeIds: Set<string>): void {
if (isRelationship(res)) {
const neoEdge = parseEdge(res);
......@@ -75,6 +80,9 @@ function parseNodeLinkEntity(res: Node | Relationship | Path | PathSegment, node
}
}
function parseNode(node: Node): NodeQueryResult {
return {
_id: node.identity.toString(),
......@@ -93,6 +101,9 @@ function parseNode(node: Node): NodeQueryResult {
};
}
function parseEdge(edge: Relationship): EdgeQueryResult {
return {
_id: edge.identity.toString(),
......@@ -143,4 +154,4 @@ function parseGroupByQuery(results: Record<any, string>[]): any {
result["by"] = { name: byKey, values: by };
return result;
}
\ No newline at end of file
}
......@@ -11,7 +11,7 @@ export const RABBIT_HOST = Bun.env.RABBIT_HOST || "localhost";
export const RABBIT_PORT = parseInt(Bun.env.RABBIT_PORT || "5672");
export const LOG_MESSAGES = Bun.env.LOG_MESSAGES || false;
export const LOG_LEVEL = parseInt(Bun.env.LOG_LEVEL || '-1');
export const REDIS_HOST = Bun.env.REDIS_HOST || "localhost";
export const REDIS_HOST = Bun.env.REDIS_HOST || "127.0.0.1";
export const REDIS_PORT = parseInt(Bun.env.REDIS_PORT || "6379");
export const REDIS_PASSWORD = Bun.env.REDIS_PASSWORD || "DevOnlyPass";
export const REDIS_SCHEMA_CACHE_DURATION = Bun.env.REDIS_SCHEMA_CACHE_DURATION || "60m";
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