query-7e2c2178a4981a8a4430aaf3347c3ed9
Identifier statistics
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
?count
?identifier ?identifierLabel ?identifierDescription
WHERE {
{
SELECT
(COUNT(*) AS ?count)
?property
WHERE {
?property ^wikibase:directClaim / wdt:P31 wd:Q56216056 .
[] ?property [] .
}
GROUP BY ?property
} ?identifier wikibase:directClaim ?property .
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;
v3("?count"):::projected
v3("?identifier"):::projected
v2("?property")
a2((" "))
a3((" "))
a1((" "))
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q56216056"]):::iri
a1 --"wikibase:directClaim"--> v2
a1 --"wdt:P31"--> c3
a2 -->v2--> a3
bind1[/"count(*)"/]
bind1 --as--o v3
v3 --"wikibase:directClaim"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end