Description
Description of the problem, including code/CLI snippet
In https://github.com/python-gitlab/python-gitlab/blob/main/gitlab/v4/objects/iterations.py the iteration implementation let you to filter the list with a search parameter.
According to the API doc (https://docs.gitlab.com/ee/api/iterations.html) by default this parameter filter the title of the iteration.
If the iteration is created by a cadence, title and description will be empty, so you will not be able to search for a specific iteration.
Expected Behavior
I would like to pass the additional parameter, documented in the API, "in" to select where the search will be performed, and search in "cadence_title" for cadence derivated iterations.
Actual Behavior
The search is only performed on the iteration title, that is empty when built from a cadence.
Specifications
- python-gitlab version: 4.4.0
- API version you are using (v3/v4): v4
- Gitlab server version (or gitlab.com): 16.8.1 EE
Update
After a first iteration we decided to extend the scope to all the new parameters available