sparql-examples

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

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

93_uniprot_created_modified_updated

rq turtle/ttl

List the created, last modified, and last sequence update dates for UniProtKB proteins.

Use at

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

SELECT
  ?protein 
  ?created
  ?modified
  ?version
WHERE {
  ?protein a up:Protein ;
           up:created ?created ;
           up:modified ?modified ;
           up:version ?version .
}