Merge request API state=closed do not return expected results
Created by: valermor
When GET /projects/:id/merge_requests?state=opened is used, the API returns a list of 'opened' AND 'reopened'. Makes sense.
When GET /projects/:id/merge_requests?state=closed is used, the API returns a list of 'closed' and 'merged'. This makes the API unusable since I only need 'closed' MR and need to parse all the history of merge requests to filter only the 'closed' one. Moreover, the question would also be what state=merged in the API is for.
Can we get the API only return MRs that are closed and not merged through state=closed?