query-20123f3a0105ebc4b7695b26e7172fa5

rq turtle/ttl

Finding German labels with suffixI am trying to find items whose German label ends with “Bezirk”. I thought the following simple query should do, but it times out…

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label
WHERE {
  ?item rdfs:label ?label
        FILTER((lang(?label) = 'de') && STRENDS(?label, 'Bezirk')).
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?label"):::projected f0[["?label = 'de'ends-with(?label,'Bezirk')"]] f0 --> v1 v2 --"rdfs:label"--> v1