Skip to content

Instantly share code, notes, and snippets.

@labra
Created March 10, 2015 14:42
Show Gist options
  • Save labra/d2e0d779711d09754b46 to your computer and use it in GitHub Desktop.
Save labra/d2e0d779711d09754b46 to your computer and use it in GitHub Desktop.
Consulta DBPedia: Autores estilo manierista
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