query-95f600bc9563fd05562bc5010302bfb6

rq turtle/ttl

will give

Use at

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?item where { 
     ?item rdfs:label ?itemLabelIt filter (lang(?itemLabelIt) = "it"&& strstarts(?item, "Paris")) }

Query found at

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