query-921b85641ea70c00cd10ec899ce09328

rq turtle/ttl

Most frequent date "happened-on" ]reply[16:39, 25 June 2020 (UTC)) talk (Bouzinac (xx/xx/xxxx is the most frequent within P585) ? Unuseful but curious about the result. (P585)point in time Hello, I'd like to query the most common

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT  ?value (COUNT(DISTINCT(?item)) as ?ct)
WHERE
{
    ?item wdt:P585 ?value
}
GROUP BY ?value
ORDER BY DESC(?ct)
LIMIT 30

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?ct") v2("?item"):::projected v3("?value"):::projected v2 --"wdt:P585"--> v3 bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v4