@prefix ex: <https://sparql.rhea-db.org/.well-known/sparql-examples/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix spex: <https://purl.expasy.org/sparql-examples/ontology#> .

ex:21_count_rhea_examples a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "SELECT the number of reactions in Rhea"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX rh:<http://rdf.rhea-db.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>

SELECT (count(?reaction) as ?reactionCount) WHERE {
  ?reaction rdfs:subClassOf rh:Reaction .
}""" ;
    schema:target <https://sparql.rhea-db.org/sparql/> .
