query-cd0e5a195029971748aed1931fc5f6b8
Names of town which end with somethingHi, I search the french town with a name wich end with "rison". I do :
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#>
SELECT ?item ?itemLabel ?coord WHERE {
?item wdt:P31 wd:Q484170.
?item rdfs:label ?itemLabel.
?item wdt:P625 ?coord.
FILTER(REGEX(?itemLabel, "(rison)$"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?coord"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
c3(["wd:Q484170"]):::iri
f0[["regex(?itemLabel,'(rison)$')"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"rdfs:label"--> v1
v2 --"wdt:P625"--> v3