#
# example SPARQL query 139
#

@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_139 a sh:SPARQLExecutable ;
    sh:prefixes _:sparql_examples_prefixes ;
    rdfs:comment """Some cell lines with the age of the individual at which the sample was collected to create the cell line"""@en ; 
    schema:keywords "age" , "individual" ; 
    schema:target <https://sparql.cellosaurus.org/sparql> ; 
    sh:select """
PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
select ?cl ?cl_name ?individual_age  where {
  ?cl cello:derivedFromIndividualAtAge ?individual_age .
  ?cl cello:recommendedName ?cl_name .
}
order by ?cl
limit 100
    """
    .

