@MarcPow you can do this with the JSON output and `jq` or some other tool that speaks JSON. As an example:
gh projects item-list --org <YOUR_ORG> <PROJECT_NUMBER> --format=json | jq '.items[] | select(.status=="In Progress" and .content.type == "Issue")’
Originally posted by @mntlty in github/gh-projects#93 (comment)