Iteration field when exporting issues to CSV

Hi guys,

I’m trying to export the list of issues from gitlab to CSV… so far so good… the problem is that the Iteration field is not coming to CSV… any known issue? Same happens wtih API?

Thanks,

Looks like you are right. We do not have the iteration field being exported and I am not sure if we plan to have it. There is one issue about it: Add iterations and resource events to import / export

The workaround for milestone burndown charts can be use of Issues API | GitLab. You need to set a milestone and pass updated_at together to the issues.

Example:

PUT https://gitlab.com/api/v4/projects/:id/issues/:issue_iid?updated_at=2021-03-06T11:34:40.343Z&milestone_id=:milestone_id

Maybe try filtering by iteration before exporting…that way you are only exporting the issues within a given iteration.