I'm familiar with general JQL but would like to be able to find out not just which issues had been rejected, but which had been rejected multiple times.
Below is a query that is general purpose/in the same area:
project = CE AND programmer = someone AND updatedDate > -10w AND status = Closed and status was in (Rejected) ORDER BY priority DESC
AFAIK, there is no count() in JQL so I'm not sure if this is even possible.
Thanks in advance for any help.