query-481d35b0d1a285ad38d7a1cd361794c6
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?propertyLabel ?count WHERE
{
{
SELECT ?property (count(?item) as ?count) WHERE {
?item ?predicate ?value .
?property wikibase:directClaim ?predicate .
} group by ?property } 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;
v6("?count"):::projected
v2("?item")
v3("?predicate")
v5("?property"):::projected
v4("?value")
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v2 -->v3--> v4
v5 --"wikibase:directClaim"--> v3
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end