Skip to content

Commit

Permalink
chore: remove debug
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Selman <danscode@selman.org>
  • Loading branch information
dselman committed May 28, 2024
1 parent 096cd39 commit 8f4fb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphmodel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}")`);
}
})
Expand Down

0 comments on commit 8f4fb74

Please sign in to comment.