In my data there are two triples:
entity1 doA entity2 .
entity2 doB entity3 .
I am looking for a way to infer the following triple and have it back in the outcome of my SPARQL query (e.g., select ?a ?c {?a doC ?c)
) :
entity1 doC entity3 .
Basically, I want to say:
IF (?a doA ?b) and (?b doB ?c) THEN (?a doC ?c)
Note, I am looking for a solution that can be completely implemented using the AGWebView interface.