Skip to content
Snippets Groups Projects

feat: split count and normal query and handle abort

Merged Leonardo Christino requested to merge feat/abortquery into main
4 files
+ 189
54
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -94,7 +94,7 @@ export const insightProcessor = async () => {
const cypher = query2Cypher(convertedQuery);
if (cypher == null) return;
try {
const result = await queryService(ss.dbConnections[0], cypher, true);
const result = await queryService(ss.dbConnections[0], cypher.query, true);
insight.status = false;
Loading