You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to MATCH what nodes and relationships were added or edited by a run. I know SimpleKGPipeline returns a PipelineResult that contains the number of nodes and the run_id, but it doesn't seem to attach itself to any nodes or relationships within the graph DB. There is an id property added, but that seems to come from the chunk's id.
Am I missing something that already exists either within the GraphRAG package or Neo4j GraphDB, or is there a easy way to attach it to nodes and rels myself?
If I attach it myself, I imagine the property would need to be an array, as nodes will be edited by multiple runs.
The text was updated successfully, but these errors were encountered:
This is not possible at the moment, the internal pipeline components, especially the KGWriter, do not know about this run_id (which is used to store and access components results during pipeline execution).
I understand the use case though, so I'll keep this issue open until we can provide a real solution.
I want to be able to
MATCH
what nodes and relationships were added or edited by a run. I know SimpleKGPipeline returns a PipelineResult that contains the number of nodes and therun_id
, but it doesn't seem to attach itself to any nodes or relationships within the graph DB. There is anid
property added, but that seems to come from the chunk's id.Am I missing something that already exists either within the GraphRAG package or Neo4j GraphDB, or is there a easy way to attach it to nodes and rels myself?
If I attach it myself, I imagine the property would need to be an array, as nodes will be edited by multiple runs.
The text was updated successfully, but these errors were encountered: