query-6a44942dcde1ae316d22caf198c4db3e

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 * WHERE {
  ?item  wdt:P17 wd:Q40; rdfs:label ?label.
  FILTER((LANG(?label)) = "de")
  FILTER(CONTAINS("&amp", ?label))
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label"):::projected c4(["wd:Q40"]):::iri f0[["contains('&amp',?label)"]] f0 --> v1 f1[["?label = 'de'"]] f1 --> v1 v2 --"wdt:P17"--> c4 v2 --"rdfs:label"--> v1