@prefix ex: <https://sparql.uniprot.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#> .

ex:12 a sh:SPARQLExecutable,
        sh:SPARQLSelectExecutable ;
    rdfs:comment "Select all UniProtKB entries that were integrated on the 30th of November 2010"@en ;
    sh:prefixes _:sparql_examples_prefixes ;
    sh:select """PREFIX up: <http://purl.uniprot.org/core/>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>

SELECT ?protein
WHERE
{
	?protein a up:Protein . 
	?protein up:created '2010-11-30'^^xsd:date
}""" ;
schema:keywords "entry history" , "date" ;    
schema:target <https://sparql.uniprot.org/sparql/> .

