query-105c89b064f97b7fba0e683a51e5ee7e

rq turtle/ttl

TODO

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title: Number of document by length of incipit 
#defaultView:LineChart
SELECT ?length (COUNT(?q) AS ?nb) WHERE {
  ?q wdt:P1922 ?incipit .
  BIND ( strlen(?incipit) AS ?length )
}
GROUP BY ?length

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?incipit") v3("?length"):::projected v4("?nb") v1("?q"):::projected v1 --"wdt:P1922"--> v2 bind0[/"string-length(?incipit)"/] v2 --o bind0 bind0 --as--o v3 bind2[/"count(?q)"/] v1 --o bind2 bind2 --as--o v4