I have Person node, Bridge node.
If GDB is stored as follow :
(Bridge) - [Relation]- Bridge
Can I import this into a Tree or Graph data structure if all of Person, Bridge are connected?
Sure, just decompose your subgraphs into all its relationships and list them in your csv file. Each node needs a unique identifier to match to. Each line would contain the Id and properties of the relationship’s source node, any rekationship properties, and the Id and properties of the relationship’s target node.
Your import script would process ravi line by ‘merging’ on each node, setting the properties, then create the relationship between the two nodes using the nodes’ binding variables.
I can provide more details if you provide a few lines of your csv file.