I am planning a project where there will be a lot of data on the links between the next two nodes, and these links and their numerous properties are the main information with which all the work is done.
We can say that there is a graph whose nodes are only identified somehow, so as not to confuse, and the area of interest is the edges.
How would you describe and store such data?
Options that still come to mind:
- relational database, node table, link table:
node1id, node2id, json_properties
- Any specific, maybe, not relational, ground under the description of graphs?
Tasks : store, add new connections, determine whether two nodes are connected through a chain of connections?