query-818d10eec984e94529eeeb0a161dcdf7
to do does not show work left to doHave set lower_case on P238 however the TODO link displayed in the template does show the values that need changing however Have edited it slightly to show that there are values waiting for fixing
Use at
- https://query.wikidata.org/sparql
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?item ?value WHERE
{
?item p:P238/ps:P238 ?value .
FILTER( REGEX(REPLACE(STR(?value), "%20", " "), "[a-z]") )
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?value"):::projected
a1((" "))
f0[["regex(replace(str(?value),'%20',' '),'#91;a-z#93;')"]]
f0 --> v1
v2 --"p:P238"--> a1
a1 --"p:statement/P238"--> v1