query-473eb16134c2ee60b211554db2729122
Carte des lieux de naissance des employés UdeM
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#>
#defaultView:Map
SELECT ?prof ?profLabel ?birthplace ?coord WHERE {
{?prof wdt:P108 wd:Q392189} # employer = UdeM
UNION # OR
{ ?prof wdt:P1416 wd:Q392189} # affiliation = UdeM
?prof wdt:P19 ?birthplace.
?birthplace wdt:P625 ?coord
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?birthplace"):::projected
v3("?coord"):::projected
v1("?prof"):::projected
c7(["bd:serviceParam"]):::iri
c2(["wd:Q392189"]):::iri
c9(["en"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P1416"--> c2
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P108"--> c2
end
union0r <== or ==> union0l
end
v1 --"wdt:P19"--> v2
v2 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end