Hi community, Is it possible filter executions by...
# flyte-support
b
Hi community, Is it possible filter executions by tags in the
list_executions_paginated
fn of flytekit
SynchronousFlyteClient
? I am aware that I can set options to filter the executions by e.g. phase -
Equal("phase", phase)
, but I don't know how to do this with tags and I haven't seen any example of this.
t
i think here's how it can be done:
filters=value_in(execution_tag.key,flyte%3Btest)
b
perfect, thanks!