Last active
August 29, 2015 14:10
-
-
Save antoinecourtin/831bb98262ac048e9ff0 to your computer and use it in GitHub Desktop.
ex requete
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
PREFIX dbpedia:<http://dbpedia.org/ontology/> | |
PREFIX foaf:<http://xmlns.com/foaf/0.1/> | |
SELECT ?auteur ?lieu ?datenaiss ?datedeces ?image | |
WHERE | |
{ | |
?auteur a <http://dbpedia.org/class/yago/FrenchPainters>. | |
?auteur dbpedia:birthPlace ?lieu. | |
?auteur dbpedia-owl:birthDate ?datenaiss. | |
?auteur dbpedia-owl:deathDate ?datedeces. | |
?auteur foaf:depiction ?image | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment