query-454615584311baf55d1e66754457125b
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map{"hide":"?coord"}
SELECT ?itemLabel ?birthplaceLabel ?coord ?layer {
?item p:P6509 ?p6509stm .
?p6509stm ps:P6509 ?layer .
FILTER(?layer > 0)
?p6509stm pq:P642 wd:Q484028 .
?item wdt:P19 ?birthplace .
?birthplace wdt:P625 ?coord .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?birthplace")
v5("?coord"):::projected
v2("?item")
v1("?layer"):::projected
v3("?p6509stm")
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c5(["wd:Q484028"]):::iri
f0[["?layer > '0^^xsd:integer'"]]
f0 --> v1
v2 --"p:P6509"--> v3
v3 --"p:statement/P6509"--> v1
v3 --"p:qualifier/P642"--> c5
v2 --"p:direct/P19"--> v4
v4 --"p:direct/P625"--> v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end