sticky-art-97180
12/11/2022, 3:51 AMtall-lock-23197
from flytekit.models.common import NamedEntityIdentifier
remote = FlyteRemote(...)
workflows, txt = remote.client.list_workflows_paginated(limit=10, identifier=NamedEntityIdentifier(project="", domain="", name="your-workflow-name"))
You can then loop over the workflows
list and fetch the ids using wf.id
.sticky-art-97180
12/12/2022, 1:09 AM