Created
March 10, 2015 14:40
-
-
Save labra/e76dcf9f60e002af2ec5 to your computer and use it in GitHub Desktop.
Consulta DBPedia: Obras entre 1500 y 1600 de tipo "Oil on canvas"
This file contains hidden or 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
PREFIX dbp: <http://dbpedia.org/property/> | |
prefix dbo: <http://dbpedia.org/ontology/> | |
prefix dbr: <http://dbpedia.org/resource/> | |
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
select * where { | |
?obra dbo:author ?author . | |
?obra dbp:year ?year ; | |
dbp:type ?type . | |
FILTER (?year > 1500 && ?year < 1600) | |
FILTER (str(?type)="Oil on canvas") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment