https://prefect.io logo
l

Leon Kozlowski

09/16/2022, 8:57 PM
Is it expected that this graphql query would return a flow group id rather than an actual flow id? Does
client.create_flow_run
work off of flow group ids?
Copy code
{
  flow(
    where: {name: {_eq: "FLOW_NAME"}, archived: {_eq:false}},
    order_by: {created: desc}
  ) {
    id
    name
    project {
      name
    }
  }
}
1
The next API call I made had the actual ids - i’m not sure if I potentially had a copy paste issue
This can be ignored
b

Bianca Hoch

09/16/2022, 9:06 PM
Hey Leon, glad that you were able to retrieve the ids!
3 Views