the problem is that it is paginated (obviously!) but how can I paginate using
time=T1
Find changesets closed after T1. Compare with from=T1 which filters by creation time instead.
time=T1,T2
Find changesets that were closed after T1 and created before T2. In other words, any changesets that were open at some time during the given time range T1 to T2.
from=T1 [& to=T2]
Find changesets created at or after T1, and (optionally) before T2. to requires from, but not vice-versa. If to is provided alone, it has no effect.
if user created more than 100 edits at the same time?
I guess that in such case I must parse changeset dump?