query-bb17ad7ce7b16f30e143018445a8f8d2
position with label starting with "sénateur" SELECT ?item ?itemLabel WHERE { ?item wdt:P31 wd:Q4164871 . ?item rdfs:label ?itemLabel . FILTER(LANG(?itemLabel) = "fr") . FILTER(STRSTARTS(lcase(?itemLabel), "sénateur")) . }
Use at
- https://query.wikidata.org/sparql
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#>
#position with label starting with "sénateur"
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P31 wd:Q4164871 .
?item rdfs:label ?itemLabel .
FILTER(LANG(?itemLabel) = "fr") .
FILTER(STRSTARTS(lcase(?itemLabel), "sénateur")) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
c4(["wd:Q4164871"]):::iri
f0[["starts-with(lower-case(?itemLabel),'sénateur')"]]
f0 --> v1
f1[["?itemLabel = 'fr'"]]
f1 --> v1
v2 --"wdt:P31"--> c4
v2 --"rdfs:label"--> v1