Hi all, is there a way to filter running flows by ...
# ask-community
g
Hi all, is there a way to filter running flows by name and parameters?
Copy code
flow_runs = await client.read_flow_runs(
    flow_run_filter=FlowRunFilter(state={"type": {"any_": [StateType.RUNNING]}}),
    name_filter=FlowRunFilterName(id={"like_": "product"})
)
I am having an issue as this code doesnt work