query-a9bac53462a4396e453e25658930052a
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT DISTINCT ?obj ?objLabel ?att ?count WHERE {
{
SELECT ?obj (COUNT(?wikipage) AS ?count) WHERE {
?obj wdt:P31 wd:Q15633582 .
?wikipage schema:about ?obj .
?wikipage schema:isPartOf/wikibase:wikiGroup "wikipedia" . }
GROUP BY ?obj ?att HAVING (?count >= 100)
} ?obj wdt:P571 ?att .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" . } }
ORDER BY desc(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?att"):::projected
v4("?count"):::projected
v2("?obj"):::projected
v3("?wikipage")
a1((" "))
c10(["bd:serviceParam"]):::iri
c3(["wd:Q15633582"]):::iri
c12(["en"]):::literal
c7(["wikipedia"]):::literal
f0[["?count >= '100^^xsd:integer'"]]
f0 --> v4
v2 --"wdt:P31"--> c3
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> a1
a1 --"wikibase:wikiGroup"--> c7
bind2[/"count(?wikipage)"/]
v3 --o bind2
bind2 --as--o v4
v2 --"wdt:P571"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end