Created
March 10, 2015 14:42
-
-
Save labra/d2e0d779711d09754b46 to your computer and use it in GitHub Desktop.
Consulta DBPedia: Autores estilo manierista
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 dbo: <http://dbpedia.org/ontology/> | |
PREFIX dbr: <http://dbpedia.org/resource/> | |
PREFIX dbp: <http://dbpedia.org/property/> | |
SELECT ?autor ?nacimiento ?lugarNacimiento ?fallecimiento ?lugarFallecimiento WHERE { | |
?autor dbo:movement dbr:Mannerism . | |
OPTIONAL { ?autor dbp:birthDate ?nacimiento . } | |
OPTIONAL { ?autor dbp:birthPlace ?lugarNacimiento . } | |
OPTIONAL { ?autor dbp:deathDate ?fallecimiento . } | |
OPTIONAL { ?autor dbp:deathPlace ?lugarFallecimiento . } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment