sparql-examples

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

View the Project on GitHub sib-swiss/sparql-examples

001

What are the species present in Bgee?

Use at

PREFIX up: <http://purl.uniprot.org/core/>

SELECT ?species WHERE {
    ?species a up:Taxon .
    ?species up:rank up:Species .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?species"):::projected 
  c2(["up:Taxon"]):::iri 
  c4(["up:Species"]):::iri 
  v1 --"a"-->  c2
  v1 --"up:rank"-->  c4