A set of SPARQL examples that are used in different TGX resources
[fill out comment here]
PREFIX aopo: <http://aopkb.org/aop_ontology#>
PREFIX dc: <http://purl.org/dc/elements/1.1/>
SELECT ?AOP ?AOPName
WHERE {
?AOP a aopo:AdverseOutcomePathway ;
dc:title ?AOPName .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?AOP"):::projected
v2("?AOPName"):::projected
c2(["aopo:AdverseOutcomePathway"]):::iri
v1 --"a"--> c2
v1 --"dc:title"--> v2