I created a semantic Graph in Neo4j. Is there any possibility to use an OWL reasoner in Neo4j? Or any inference engine?
Though it has been mentioned here i can\'t fi
My research in this area in progress, please watch here to see latest article draft, there is special section Inference on graph.
I'm looking on neo4j -> Prolog -> neo4j
approach: (a)-[b]->(c)
graph can be expressed as b(a,c)
predicate, so export your .db into .pl and query in SWI Prolog for example. But the most complex thing: how to do some (direct) reasoning for backward import into neo4j.
I'm thinking about applying YieldProlog with direct traversal over neo4j db using BOLT prolotocol. I plan to add special mods for Yield method to specially process labels and attributes of graph elements, so my knowledge bases going to be described is neo4j databases by design.