query-d689466242f9005a8fa76121a777a2fa
Élément dont une propriété possède un mot particulier SELECT DISTINCT ?item ?nom WHERE { ?item wdt:P3219 ?nom . FILTER regex (?nom, "exposition"). }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#Élément dont une propriété possède un mot particulier
SELECT DISTINCT ?item ?nom WHERE
{
?item wdt:P3219 ?nom .
FILTER regex (?nom, "exposition").
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?nom"):::projected
f0[["regex(?nom,'exposition')"]]
f0 --> v1
v2 --"wdt:P3219"--> v1