query-c631be807463b473af0ac08f0ac915ce
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
SELECT ?item ?itDescrizione WHERE {
{
SELECT ?item {
BIND( 1000000 * 30 AS ?base ) . # change this 0-30
?item wdt:P31 wd:Q4167836 .
BIND( xsd:integer( STRAFTER( STR( ?item ), STR( wd:Q ) ) ) AS ?num ) .
FILTER( ?num > ?base + 0 && ?num < ?base + 1000001 ) .
}
}.
?item schema:description ?itDescrizione FILTER( LANG( ?itDescrizione ) = 'it' ) .
FILTER( STR( ?itDescrizione ) != 'categoria di un progetto Wikimedia' ) .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?base")
v1("?itDescrizione"):::projected
v4("?item"):::projected
v5("?num")
c6(["wd:Q4167836"]):::iri
f0[["str(?itDescrizione) != 'categoria di un progetto Wikimedia'"]]
f0 --> v1
f1[["?itDescrizione = 'it'"]]
f1 --> v1
f2[["?num > ?base + '0^^xsd:integer'?num < ?base + '1000001^^xsd:integer'"]]
f2 --> v5
f2 --> v4
bind3[/"'1000000^^xsd:integer' * '30^^xsd:integer'"/]
bind3 --as--o v4
v4 --"wdt:P31"--> c6
bind4[/"http://www.w3.org/2001/XMLSchema#integer(substring-after(str(?item),str('wd:Q')))"/]
v4 --o bind4
bind4 --as--o v5
v4 --"schema:description"--> v1