A set of SPARQL examples that are used in different SIB resources
Select all taxa from the UniProt taxonomy
PREFIX up: <http://purl.uniprot.org/core/>
SELECT ?taxon
FROM <http://sparql.uniprot.org/taxonomy>
WHERE
{
?taxon a up:Taxon .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?taxon"):::projected
c2(["up:Taxon"]):::iri
v1 --"a"--> c2