I have a dump of N-Triples which I want to convert to Cypher Text, So that it can be loaded into Neo4j Database directly.
For simple ontologies like rdf-syntax-ns#type
I can convert easily using a script i.e
<http://www.foo.org/triple1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.foo.org/Human>
Can be easily converted as
CREATE (t1:Human { type : "triple1" })
and it is accurate and as I want it to be. But for complicated stuff like <http://www.w3.org/2002/07/owl#equivalentProperty>
it gets damn crapped.
Thus my question is How to convert any triple using <http://www.w3.org/2002/07/owl#equivalentProperty>
as the predicate to Cypher text?