query-925821e32835feb1705017d82bdfaba1
WDQS 10000 Results in 5002 ms
LDF 1000 in 60s
SELECT ?item ?desc WHERE { ?item wdt:P31 wd:Q4167836 . # ~3 * 10^6 items ?item schema:description ?desc FILTER(LANG(?desc)="it") } LIMIT 10000
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
#WDQS 10000 Results in 5002 ms
#LDF 1000 in 60s
SELECT ?item ?desc
WHERE
{
?item wdt:P31 wd:Q4167836 . # ~3 * 10^6 items
?item schema:description ?desc
FILTER(LANG(?desc)="it")
}
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?desc"):::projected
v2("?item"):::projected
c3(["wd:Q4167836"]):::iri
f0[["?desc = 'it'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"schema:description"--> v1