sparql-examples

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

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

24

Find the release number of the UniProt data that is currently being queried

Use at

SELECT ?version
FROM <https://sparql.uniprot.org/.well-known/void>
WHERE
{
    [] <http://purl.org/pav/version> ?version
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?version"):::projected 
  a1((" "))
  a1 --http://purl.org/pav/version-->  v1