sparql-examples

A set of SPARQL examples that are used in different TGX resources

View the Project on GitHub BiGCAT-UM/sparql-examples

002

rq turtle/ttl

[fill out comment here]

Use at

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