#
# example SPARQL query 142
#

@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_142 a sh:SPARQLExecutable ;
    sh:prefixes _:sparql_examples_prefixes ;
    rdfs:comment """Some cell lines with a miscellaneous comment"""@en ; 
    schema:keywords "misc" , "miscellaneous" ; 
    schema:target <https://sparql.cellosaurus.org/sparql> ; 
    sh:select """
PREFIX cello: <https://purl.expasy.org/cellosaurus/rdf/ontology/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?cl ?cl_name ?miscellaneous_comment where {
  ?cl cello:hasMiscellaneousInfoComment ?annot.
  ?cl cello:recommendedName ?cl_name .
  ?annot rdfs:comment ?miscellaneous_comment .
}
limit 100
    """
    .

