Pierre Monico
11/10/2021, 2:08 PMREADME
of a flow through a graphql call. I am able to do this by calling flow_group.description
but:
• What is a flow group? Is that all versions of a given flow?
• If so, why does flow_group.name
return a uuid? (aka. how can I simply relate a flow’s name to it’s description)Anna Geller
Anna Geller
Pierre Monico
11/10/2021, 3:12 PMname
a uuid?
• What is the actual flow’s (not group) description
field for / how do I set it?Pierre Monico
11/10/2021, 3:13 PMAnna Geller
Anna Geller
query {
flow_group(where: {id: {_eq: "a532da5f-5232-4fa0-83a0-7e7a218321ba"}}) {
schedule
description
name
}
}
Pierre Monico
11/17/2021, 2:50 PM