Is it expected that this graphql query would retur...
# ask-community
l
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
Hey Leon, glad that you were able to retrieve the ids!