We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254d13a commit 62e6f25Copy full SHA for 62e6f25
ai-assistant/src/core/db/db.ts
@@ -56,18 +56,18 @@ export class DBNode {
56
getDBInsertQuery(): string {
57
let query = "";
58
query += `
59
- CREATE (n:${this.descriptor} {
60
- id: $id,
61
- name: $name,
62
- type: $type,
63
-
64
- code: $code,
65
- filePath: $filePath,
66
67
- nameEmbeddings: $nameEmbeddings,
68
- codeEmbeddings: $codeEmbeddings
69
- })
70
- `;
+ CREATE (n:${this.descriptor} {
+ id: $id,
+ name: $name,
+ type: $type,
+
+ code: $code,
+ filePath: $filePath,
+ nameEmbeddings: $nameEmbeddings,
+ codeEmbeddings: $codeEmbeddings
+ })
+ `;
71
72
return query;
73
}
0 commit comments