How to filter workflow list on workflow id in a LIKE style (pattern or a part)?

@guntenbein query based filtering is supported on ES enabled environments. You can filter based on SearchAttributes, including WorkflowId and RunId keywords.
Ex of a query:

WorkflowId = my-workflow-id and RunId <> "e7b0a671-377b-40d4-8b17-30fda9cb2688"

Full documentation for workflows filtering using queries is available here https://docs.temporal.io/docs/filter-workflows

There is also going to be an update very soon that adds auto-completion to queries, it is currently in a PR https://github.com/temporalio/web/pull/170

1 Like