I want to build a knowledge graph for specific story-line, so for that I have extracted Relationship triplets (S,P,O)
using OpenIE. Now I am want to create graph database from these Relationship triplets which I don't know how to do.
So here is my questions:
1) Which graph database should I use and why ?
2) How do I create Database from relationship triplets or Is it possible to create a relationship graph in any graph database from raw relationship triplets?
For example suppose I select Neo4j
as Graph Database:
Relationship triplets looks like : ['Barack Obama', ' was born in', ' Hawaii']
How do I create the Neo4j graph pro-grammatically from ['Barack Obama', ' was born in', ' Hawaii']
?
Barak Obama and Hawaii
areNodes
.
was born in
isRelationship