Replies: 1 comment 1 reply
-
@jychp feel free to add or update with the references you already have for relationship ingestion. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Model relationships that can be loaded without a node schema
Currently, the load function needs a
CartographyNodeSchema
to ingest the data from a dictionary to the Cypher queries inserting the data.It would enable different possibilities to have a
load
function that can create the Cypher queries using relationship definitions only.This would enable modules that can perform analysis of data and enrich existing nodes. A few examples are:
If done generic enough, this could also improve ingestion of 1 to many relationships to improve performance on ingestion:
(GitHubUser)-[: OWNER| OUTSIDE_COLLAB_*| DIRECT_COLLAB_*]-(GitHubRepository)
relationsBeta Was this translation helpful? Give feedback.
All reactions