query-717f200fed59156d300f087c424a3a87

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?place ?placeLabel ?geonames
WHERE {
  ?place wdt:P1667 "7015539" .
  OPTIONAL {?place wdt:P1566 ?geonamesid .
  BIND (uri(concat("http://sws.geonames.org/", ?geonamesid, "/")) as ?geonames)}
  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; v3("?geonames"):::projected v2("?geonamesid") v1("?place"):::projected c5(["bd:serviceParam"]):::iri c2(["7015539"]):::literal c7(["en"]):::literal v1 --"wdt:P1667"--> c2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1566".-> v2 bind0[/"concat('http://sws.geonames.org/',?geonamesid,'/')"/] v2 --o bind0 bind0 --as--o v3 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end