query-6deec89e719b179a23d32eee822ff36b

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?localit_ ?localit_Label WHERE {
  ?localit_ wdt:P31 / wdt:P279 * wd:Q486972.
  ?localit_ wdt:P17 wd:Q408.
  ?localit_ rdfs:label ?localit_Label.
  FILTER (LANG(?localit_Label) = "en")
  FILTER CONTAINS(?localit_Label, " Downs")
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?localit_"):::projected v1("?localit_Label"):::projected a1((" ")) c5(["wd:Q486972"]):::iri c7(["wd:Q408"]):::iri f0[["contains(?localit_Label,' Downs')"]] f0 --> v1 f1[["?localit_Label = 'en'"]] f1 --> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 v2 --"wdt:P17"--> c7 v2 --"rdfs:label"--> v1