query-322e61d1e9accfc08a609e4c2464ba02
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?template ?templateLabel ?count WHERE {
{
SELECT ?template ?count WHERE {
?template wikibase:sitelinks ?count.
FILTER(?count >= 250)
}
ORDER BY DESC(?count)
LIMIT 100
}
?template wdt:P31/wdt:P279* wd:Q11266439.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?count"):::projected
v2("?template"):::projected
a1((" "))
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c5(["wd:Q11266439"]):::iri
f0[["?count >= '250^^xsd:integer'"]]
f0 --> v1
v2 --"wikibase:sitelinks"--> v1
v2 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end