From 8f4fb74348d19b37d903f29e81aaec4eca02a552 Mon Sep 17 00:00:00 2001 From: Dan Selman Date: Tue, 28 May 2024 14:10:11 +0100 Subject: [PATCH] chore: remove debug Signed-off-by: Dan Selman --- src/graphmodel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphmodel.ts b/src/graphmodel.ts index 4e9c461..f1a7954 100644 --- a/src/graphmodel.ts +++ b/src/graphmodel.ts @@ -255,7 +255,7 @@ export class GraphModel { const indexes = this.getVectorIndexes(); for (let n = 0; n < indexes.length; n++) { const index = indexes[n]; - console.log(JSON.stringify(index, null, 2)); + // console.log(JSON.stringify(index, null, 2)); await tx.run(`CALL db.index.vector.createNodeIndex("${index.indexName}", "${index.type}", "${index.property}", ${index.size}, "${index.indexType}")`); } })