Skip to content

Instantly share code, notes, and snippets.

@labra
Created March 10, 2015 14:40
Show Gist options
  • Save labra/e76dcf9f60e002af2ec5 to your computer and use it in GitHub Desktop.
Save labra/e76dcf9f60e002af2ec5 to your computer and use it in GitHub Desktop.
Consulta DBPedia: Obras entre 1500 y 1600 de tipo "Oil on canvas"
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