#
# example SPARQL query 164
#

@prefix schema: <https://schema.org/> . 
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . 
@prefix sh: <http://www.w3.org/ns/shacl#> . 
@prefix cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/> .


cello:Query_164 a sh:SPARQLExecutable ;
    sh:prefixes _:sparql_examples_prefixes ;
    rdfs:comment """Version, date of entry creation, and date of last update in Cellosaurus for some cell lines"""@en ; 
    schema:keywords "dt" , "dtc" , "dtu" , "dtv" , "version" ; 
    schema:target <https://sparql.cellosaurus.org/sparql> ; 
    sh:select """
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
    """
    .

