sparql-examples

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

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

Query_164

rq turtle/ttl

Version, date of entry creation, and date of last update in Cellosaurus for some cell lines

Use at


PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
select ?cl ?cl_name ?version ?date_added_to_cellosaurus ?date_of_last_change  where {
        ?cl cello:version ?version .
        ?cl cello:created ?date_added_to_cellosaurus .
        ?cl cello:modified ?date_of_last_change .
    ?cl cello:recommendedName ?cl_name .
}
order by ?cl
limit 100
    
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?cl"):::projected 
  v5("?cl_name"):::projected 
  v3("?date_added_to_cellosaurus"):::projected 
  v4("?date_of_last_change"):::projected 
  v2("?version"):::projected 
  v1 --"cello:version"-->  v2
  v1 --"cello:created"-->  v3
  v1 --"cello:modified"-->  v4
  v1 --"cello:recommendedName"-->  v5