query-b6dfa88143b960f2f7dece8362590937
Informations privées sur les participants au Prix de Lausanne
SELECT ?item ?itemLabel ?genreLabel ?employerLabel ?dateofbirth ?dateofdeath ?spouseLabel # affiche les résultats de ces labels (en langage id Q ou en langage humain si on ajoute Label au label), on peut aussi préciser ici les item
WHERE { # Item Property Value Stop ?item wdt:P31 wd:Q5 . # ajouter instance of human { ?item wdt:P1344 wd:Q673014 . } # participant à Prix de Lausanne UNION { ?item wdt:P2522 wd:Q673014 . } # victoire à Prix de Lausanne ?item wdt:P21 ?genre OPTIONAL { ?item wdt:P569 ?dateofbirth } . OPTIONAL { ?item wdt:P570 ?dateofdeath } . OPTIONAL { ?item wdt:P26 ?spouse } . OPTIONAL { ?item wdt:P108 ?employer } . # afficher l'employeur si connu
SERVICE wikibase:label { bd:serviceParam wikibase:language "ru,ja,es,fr,en,[AUTO_Language]" . }
}
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Informations privées sur les participants au Prix de Lausanne
SELECT ?item ?itemLabel ?genreLabel ?employerLabel ?dateofbirth ?dateofdeath ?spouseLabel # affiche les résultats de ces labels (en langage id Q ou en langage humain si on ajoute Label au label), on peut aussi préciser ici les item
WHERE
{
# Item Property Value Stop
?item wdt:P31 wd:Q5 . # ajouter instance of human
{ ?item wdt:P1344 wd:Q673014 . } # participant à Prix de Lausanne
UNION
{ ?item wdt:P2522 wd:Q673014 . } # victoire à Prix de Lausanne
?item wdt:P21 ?genre
OPTIONAL { ?item wdt:P569 ?dateofbirth } .
OPTIONAL { ?item wdt:P570 ?dateofdeath } .
OPTIONAL { ?item wdt:P26 ?spouse } .
OPTIONAL { ?item wdt:P108 ?employer } . # afficher l'employeur si connu
SERVICE wikibase:label { bd:serviceParam wikibase:language "ru,ja,es,fr,en,[AUTO_Language]" . }
}