query-8f66d1906db161474c1fcab33217b565
Topics through time
PREFIX target: http://www.wikidata.org/entity/Q26572
SELECT ?year ?works ?topic ?topicLabel WITH { SELECT ?work WHERE { ?work wdt:P1433 target: . } } AS %works WITH { SELECT (COUNT(?work) AS ?count) ?topic WHERE { INCLUDE %works ?work wdt:P921 ?topic . } GROUP BY ?topic ORDER BY DESC(?count) LIMIT 5 } AS %topics WITH { SELECT ?year (COUNT(?work) AS ?works) ?topic WHERE { INCLUDE %works INCLUDE %topics ?work wdt:P921 ?topic ; wdt:P577 ?publication_datetime . BIND(STR(YEAR(?publication_datetime)) AS ?year) } GROUP BY ?year ?topic } AS %result WHERE { INCLUDE %result SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY ?year
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#>
# Topics through time
PREFIX target: <http://www.wikidata.org/entity/Q26572>
SELECT
?year
?works
?topic ?topicLabel
WHERE {
{
SELECT
?year
(COUNT(?work) AS ?works)
?topic
WHERE {
{
SELECT
?work
WHERE {
?work wdt:P1433 target: .
}
} {
SELECT
(COUNT(?work) AS ?count)
?topic
WHERE {
INCLUDE %works
?work wdt:P921 ?topic .
}
GROUP BY ?topic
ORDER BY DESC(?count)
LIMIT 5
} ?work wdt:P921 ?topic ;
wdt:P577 ?publication_datetime .
BIND(STR(YEAR(?publication_datetime)) AS ?year)
}
GROUP BY ?year ?topic
} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?year