query-c12da303b69262d3bc111b448a7eb3d3
humain né-e ou mort-e dans la Canton de Vaud
SELECT ?humain ?humainLabel ?lieuNaissanceLabel ?lieuMortLabel ?occup ?occupLabel
WITH { SELECT DISTINCT ?humain WHERE
{
?humain wdt:P31 wd:Q5.
?humain wdt:P106* ?occup.
{?humain wdt:P19 ?lieuNaissance.
?lieuNaissance wdt:P131 wd:Q12771.}
UNION
{?humain wdt:P20 ?lieuMort.
?lieuMort wdt:P131 wd:Q12771.}
} } as %i
WHERE {include %i
OPTIONAL {?humain wdt:P19 ?lieuNaissance.}
OPTIONAL {?humain wdt:P20 ?lieuMort.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". }
} ORDER BY ?humainLabel
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#>
#humain né-e ou mort-e dans la Canton de Vaud
SELECT ?humain ?humainLabel ?lieuNaissanceLabel ?lieuMortLabel ?occup ?occupLabel
WHERE { { SELECT DISTINCT ?humain WHERE
{
?humain wdt:P31 wd:Q5.
?humain wdt:P106* ?occup.
{?humain wdt:P19 ?lieuNaissance.
?lieuNaissance wdt:P131 wd:Q12771.}
UNION
{?humain wdt:P20 ?lieuMort.
?lieuMort wdt:P131 wd:Q12771.}
} } OPTIONAL {?humain wdt:P19 ?lieuNaissance.}
OPTIONAL {?humain wdt:P20 ?lieuMort.}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],fr". }
} ORDER BY ?humainLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?humain"):::projected
v1("?humainLabel"):::projected
v5("?lieuMort")
v4("?lieuNaissance")
v3("?occup"):::projected
c6(["wd:Q12771"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,fr"]):::literal
c2(["wd:Q5"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P106"--> v3
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P20"--> v5
v5 --"wdt:P131"--> c6
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P19"--> v4
v4 --"wdt:P131"--> c6
end
union0r <== or ==> union0l
end
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P19".-> v4
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P20".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end