query-20f2ca499b797aceb5704989eaeb41fd

rq turtle/ttl

Malayalam films released per year

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
# Malayalam films released per year
#defaultView:BarChart
SELECT ?year (COUNT(?item) AS ?cnt) WHERE {
  ?item wdt:P31 wd:Q11424;
    wdt:P364 wd:Q36236;
    wdt:P577 ?publicationdate.
  BIND(STR(YEAR(?publicationdate)) AS ?year)
  FILTER(BOUND(?year))
}
GROUP BY ?year
ORDER BY (?year)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?cnt") v2("?item"):::projected v3("?publicationdate") v4("?year"):::projected c4(["wd:Q36236"]):::iri c2(["wd:Q11424"]):::iri f0[["bound(?year)"]] f0 --> v4 v2 --"wdt:P31"--> c2 v2 --"wdt:P364"--> c4 v2 --"wdt:P577"--> v3 bind1[/"str(year-from-dateTime(?publicationdate))"/] v3 --o bind1 bind1 --as--o v4 bind3[/"count(?item)"/] v2 --o bind3 bind3 --as--o v4