query-22cdd15f813ec0f0158eb9065ccf7ec9

rq turtle/ttl

Searching labelsIf you want to find all items that have a certain word, say "Frankfurt" in a label, you could try a query like this: Chercher les libellésSi vous essayez de trouver tous les éléments dont le libellé contient un certain mot, comme « Frankfurt », vous pourriez tenter la requête suivante : Searching labels If you want to find all items that have a certain word, say "Frankfurt" in a label, you could try a query like this: Labels zoekenAls u alle items wilt vinden die een bepaald woord hebben, zeg "Frankfurt" in een label, dan kunt u een query als deze proberen: TODO Searching labels If you want to find all items that have a certain word, say "Frankfurt" in a label, you could try a query like this: Пошук міток If you want to find all items that have a certain word, say "Frankfurt" in a label, you could try a query like this: 搜索标签 If you want to find all items that have a certain word, say "Frankfurt" in a label, you could try a query like this:

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?label
WHERE
{
  ?item rdfs:label ?label.
  FILTER CONTAINS(?label, "Frankfurt")
}

Query found at

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