Michael
09/08/2021, 8:21 AMprefect get
(api here) in the Python client? In particular, is there any way to get a Flow ID by it’s name, project, & version as there is with the CLI?Bouke Krom
09/08/2021, 8:49 AMclient.graphql
with a query like:
{
flow(where: {_and: {archived: {_eq: false}, name: {_eq: "$FLOW_NAME"}}}){
id
}
}
Kevin Kho