fix node save errors (#303)
This commit is contained in:
parent
f88093bbbe
commit
4e52c57675
2 changed files with 3 additions and 3 deletions
|
|
@ -30,10 +30,10 @@ EPISODIC_NODE_SAVE_BULK = """
|
|||
"""
|
||||
|
||||
ENTITY_NODE_SAVE = """
|
||||
MERGE (n:Entity {uuid: $uuid})
|
||||
MERGE (n:Entity {uuid: $entity_data.uuid})
|
||||
SET n:$($labels)
|
||||
SET n = $entity_data
|
||||
WITH n CALL db.create.setNodeVectorProperty(n, "name_embedding", $name_embedding)
|
||||
WITH n CALL db.create.setNodeVectorProperty(n, "name_embedding", $entity_data.name_embedding)
|
||||
RETURN n.uuid AS uuid"""
|
||||
|
||||
ENTITY_NODE_SAVE_BULK = """
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "graphiti-core"
|
||||
version = "0.8.1"
|
||||
version = "0.8.2"
|
||||
description = "A temporal graph building library"
|
||||
authors = [
|
||||
"Paul Paliychuk <paul@getzep.com>",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue