query-24d21026d56302132d0ecb8cb889db53

rq turtle/ttl

TODO

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{"hide":"?geo"}
SELECT ?geo ?objectLabel ?countryLabel WHERE { 
?object wdt:P361 wd:Q75833130 . 
?object wdt:P17 ?country . 
?country wdt:P3896 ?geo . 
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("?country") v3("?geo"):::projected v1("?object") c2(["wd:Q75833130"]):::iri c6(["bd:serviceParam"]):::iri c8(["en"]):::literal v1 --"wdt:P361"--> c2 v1 --"wdt:P17"--> v2 v2 --"wdt:P3896"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end