query-67713d0acea6012fedabb229848b6c40
TODO
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#>
#title:Mappa dei luoghi di nascita e di morte degli allievi della SAIA
#defaultView:Map{ "markercluster": true}
SELECT ?person ?personLabel ?place ?placeLabel ?coord ?layer
WHERE {
{?person wdt:P69 wd:Q1576779 .
OPTIONAL { ?person wdt:P19 ?place . ?place wdt:P625 ?coord . BIND("birth" AS ?layer)} }
UNION
{?person wdt:P69 wd:Q1576779 .
OPTIONAL { ?person wdt:P20 ?place . ?place wdt:P625 ?coord . BIND("death" AS ?layer)} }
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v5("?layer"):::projected
v1("?person"):::projected
v2("?place"):::projected
c2(["wd:Q1576779"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["it"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P69"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P20".-> v2
v2 --"wdt:P625"--> v3
bind0[/"'death'"/]
bind0 --as--o v5
end
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P69"--> c2
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P19".-> v2
v2 --"wdt:P625"--> v3
bind1[/"'birth'"/]
bind1 --as--o v5
end
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end