Closed Daniel-Mietchen closed 5 years ago
This query provides an overview of the topics that have already been used to tag scholarly articles indexed in Wikidata:
#defaultView:Table
SELECT DISTINCT ?topic ?topicLabel
WITH {
SELECT (count(?work) as ?count) ?topic WHERE {
?work wdt:P921 ?topic ;
wdt:P31 wd:Q13442814 .
}
GROUP BY ?topic
} AS %result
WHERE {
INCLUDE %result
SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
}
ORDER BY DESC(?count)
I have now moved my notes on topic indexing over to https://www.wikidata.org/w/index.php?title=User:Daniel_Mietchen/QuickStatements&oldid=939899867 .