Hi guys,
I need to get all worklogs for specific period of time. Now I see only one way:
- Get all changed issues: rest/api/latest/search?jql=updated>=2012-09-01
- Get every issue details: rest/api/latest/issue/ISSUE-KEY and extract worklogs from it.
Is there another way to get it? First that I tried was expand. I tried rest/api/latest/search?jql=updated>=2012-09-01&expand=worklog but it doesn't work. I'm trying to find a way to get everything with single query to avoid additional network colloboration. Could you advice anything please?