query-6eb08efd6cc5aed7725943465aac9972

rq turtle/ttl

Birthplaces of mayors of Prague

Use at

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 ?starostaLabel ?coord ?mistoLabel
WHERE {
    ?starosta wdt:P39 wd:Q17149373 .
    ?starosta wdt:P19 ?misto .
    ?misto wdt:P625 ?coord .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "cs" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coord"):::projected v2("?misto") v1("?starosta") c8(["cs"]):::literal c6(["bd:serviceParam"]):::iri c2(["wd:Q17149373"]):::iri v1 --"wdt:P39"--> c2 v1 --"wdt:P19"--> v2 v2 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end