query-e269feef0664722ab38f5428389aac9d
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?directprop ?propLabel (COUNT(?item) AS ?compte) WHERE {
?item ?directprop wd:Q28004591 .
?prop wikibase:directClaim ?directprop .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?directprop ?propLabel
ORDER BY DESC(?compte)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?compte")
v3("?directprop"):::projected
v2("?item"):::projected
v4("?prop")
c1(["wd:Q28004591"]):::iri
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 -->v3--> c1
v4 --"wikibase:directClaim"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v5