From 90d683b9e8137655405f4778b50b5e045675eb5d Mon Sep 17 00:00:00 2001 From: Aycsi <207523432+aycsi@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:02:50 +0100 Subject: [PATCH 1/3] morgonpigg --- src/views/batchManger.ts | 0 src/views/graphView.ts | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 src/views/batchManger.ts diff --git a/src/views/batchManger.ts b/src/views/batchManger.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/views/graphView.ts b/src/views/graphView.ts index 8c2817b..1c547f6 100644 --- a/src/views/graphView.ts +++ b/src/views/graphView.ts @@ -33,7 +33,7 @@ export class GraphView { WHERE n:Repository OR n:File OR n:Contributor OR n:Dependency RETURN id(n) as id, labels(n)[0] as label, coalesce(n.name, n.fullName, n.path, n.email) as name - LIMIT 200 + LIMIT 100 `); const edges = await this.neo4j.executeQuery(` MATCH (a)-[r]->(b) @@ -69,7 +69,7 @@ export class GraphView { MATCH (r:Repository {fullName: $repo})-[rel]-(n) RETURN id(n) as id, labels(n)[0] as label, coalesce(n.name, n.fullName, n.path, n.email) as name - LIMIT 150 + LIMIT 100 `, { repo: msg.repo }); const repoNode = await this.neo4j.executeQuery(` MATCH (r:Repository {fullName: $repo}) From 20d8ffa852a1d2e01b4cb0008ff74ebaac1d30b0 Mon Sep 17 00:00:00 2001 From: Aycsi <207523432+aycsi@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:03:59 +0100 Subject: [PATCH 2/3] filename typo --- src/views/batchManger.ts | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/views/batchManger.ts diff --git a/src/views/batchManger.ts b/src/views/batchManger.ts deleted file mode 100644 index e69de29..0000000 From 932c7114db15851b070b35afd90e4376eea69829 Mon Sep 17 00:00:00 2001 From: Aycsi <207523432+aycsi@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:05:15 +0100 Subject: [PATCH 3/3] fix: LIMITs in queries --- src/views/graphView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/graphView.ts b/src/views/graphView.ts index 1c547f6..df41ec1 100644 --- a/src/views/graphView.ts +++ b/src/views/graphView.ts @@ -40,7 +40,7 @@ export class GraphView { WHERE (a:Repository OR a:File OR a:Contributor OR a:Dependency) AND (b:Repository OR b:File OR b:Contributor OR b:Dependency) RETURN id(a) as src, id(b) as tgt, type(r) as rel - LIMIT 500 + LIMIT 400 `); this.panel?.webview.postMessage({ command: 'graphData',