-
-
Save antoinecourtin/900daafa0ad7fd67acb7 to your computer and use it in GitHub Desktop.
test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 15th century Europeana objects from France with "Saint" as title | |
PREFIX edm: <http://www.europeana.eu/schemas/edm/> | |
PREFIX ore: <http://www.openarchives.org/ore/terms/> | |
PREFIX luc: <http://www.ontotext.com/owlim/lucene#> | |
SELECT DISTINCT ?CHO ?year ?title ?EuropeanaObject | |
WHERE { | |
?EuropeanaObject edm:year ?year ; | |
edm:hasMet <http://sws.geonames.org/3017382/> . | |
?EuropeanaObject ore:proxyFor ?CHO. | |
?proxy ore:proxyFor ?item; dc:title ?title. | |
?title luc: "saint" | |
FILTER (?year < "1500") | |
FILTER (?year > "1400") | |
} | |
LIMIT 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment