I run az pipelines release list --org $organization --project $project --top 1000 -o table
to get all the releases in $project. I just get the first 100 releases - as there is a bug I reported https://github.com/Azure/azure-devops-cli-extension/issues/937)
To workaround that limitation, I tried to filter the output from az pipelines release list (using --query) based on releaseDefinition name to only get a subset of this dataset and not to hit this 100 items limitation -hoping it filters before it output the dataset. Unfortunately, it did not work as it does not prefilter but instead, it loads the top 100 first items and then filters that dataset.
Does anybody have a workaround ?