query-a4c583442e4f1d5f6917575a58bfae77
NARA P1225 SELECT ?natureLabel ?total WITH { SELECT ?nature (COUNT(?item) as ?total) WHERE { ?item wdt:P1225 ?ID; wdt:P31 ?nature. } GROUP BY ?nature } as %i where { include %i SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?total)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#NARA P1225
SELECT ?natureLabel ?total where
{
{
SELECT ?nature (COUNT(?item) as ?total)
WHERE
{
?item wdt:P1225 ?ID;
wdt:P31 ?nature.
} GROUP BY ?nature } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} ORDER BY DESC(?total)
Query found at
- https://www.wikidata.org/wiki/Wikidata:Request_a_query/Archive/2019/11
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Archival_Description/Use_cases
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?ID")
v2("?item")
v4("?nature")
v5("?total"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P1225"--> v3
v2 --"wdt:P31"--> v4
bind1[/"count(?item)"/]
v2 --o bind1
bind1 --as--o v5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end