mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 14:13:11 +02:00
10 lines
369 B
SPARQL
10 lines
369 B
SPARQL
PREFIX a: <http://www.w3.org/2000/10/annotation-ns#>
|
|
PREFIX dc: <http://purl.org/dc/elements/1.1/>
|
|
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
|
|
SELECT ?annot
|
|
WHERE { ?annot a:annotates <http://www.w3.org/TR/rdf-sparql-query/> .
|
|
?annot dc:created ?date .
|
|
FILTER ( xsd:dateTime(?date) < xsd:dateTime("2005-01-01T00:00:00Z") )
|
|
}
|