query-f301cd45e1d7220002dbbfddc8511499

rq turtle/ttl

Finland. File:Regions of Finland labelled FI.svgSee for fi gets the preferred label. (P1705)native label Accessing

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#>
SELECT ?reg ?regLabel ?cap ?capLabel WHERE {
  # region of Finland
  ?reg wdt:P31 wd:Q193512 .

  # find the capital
  ?reg wdt:P36 ?cap .

  SERVICE wikibase:label {
     bd:serviceParam wikibase:language "fi" .
  }
} ORDER BY ?regLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?cap"):::projected v2("?reg"):::projected v1("?regLabel"):::projected c5(["bd:serviceParam"]):::iri c7(["fi"]):::literal c2(["wd:Q193512"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P36"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end