I'm trying to figure out if I want to get all the ...
# flyte-support
b
I'm trying to figure out if I want to get all the executions of a workflow, can I use the SynchronousFlyteClient.list_executions_paginated method? Can I specify the workflow name (e.g.,
xxx.abc_workflow
) for the
filters
parameter? If so, does anyone know how? I tried something like
Copy code
flyte_client.list_executions_paginated(
    project="xxx", 
    domain="xxx",
    limit=2,
    filters=[Filter.from_python_std("eq(name,xxx.abc_workflow)")],
)
And got
Copy code
_InactiveRpcError: <_InactiveRpcError of RPC that terminated with:
        status = StatusCode.INVALID_ARGUMENT
        details = "'e.name' is invalid filter"
Maybe you want
workflow.name
in the filter
b
Thank you.