@prefix ex: <https://sparql.uniprot.org/.well-known/sparql-examples/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .

ex:85_taxonomy_host a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "Find taxon records that are known to have part of their life cycle in other organisms (e.g. parasite, symbiont, infection)"^^rdf:HTML ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>

SELECT 
  ?virus 
  ?host 
WHERE {
    ?virus up:host ?host .
}""" ;
    schema:keywords "taxonomy" , "host" ;
    schema:target <https://sparql.uniprot.org/sparql/> .

