Skip to content

Instantly share code, notes, and snippets.

@antoinecourtin
Created November 13, 2015 10:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save antoinecourtin/d938662ccf0da41cc749 to your computer and use it in GitHub Desktop.
Save antoinecourtin/d938662ccf0da41cc749 to your computer and use it in GitHub Desktop.
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
select distinct ?personne ?personneLabel
where {
?personne wdt:P31 wd:Q5 . #pour chercher des personnes humaines
?personne wdt:P21 wd:Q6581072 . #pour récupérer les femmes
?personne wdt:P411 wd:Q43115 . #qui sont des saintes
?personne wdt:P19 wd:Q142 #Et qui sont nées en France
SERVICE wikibase:label {
bd:serviceParam wikibase:language "fr,en" .
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment