13 lines
254 B
Plaintext
Raw Permalink Normal View History

2023-02-02 11:51:05 +01:00
prefix ex:<www.example.org>
premix rdf <...>
SELECT ?creation_date
WHERE
?ex:Film:ex:name Titanic
SELECT ?film_name
WHERE {
?ex:creation_date ?creation_date .
ex:name : ?film_name
FILTER (?creation_date > "1998-01-01"^^xsd:dateTime)
}