Can anybody help me with a graphQL problem. I need to get the schedule of all flows, and as some were manually set, using graphQL seems like the best solution. Can anybody help me or point to a source?
k
Kevin Kho
08/31/2021, 1:49 AM
Hey, try this?
Copy code
query {
flow (where:{schedule: {_is_null: false}}){
id
name
schedule
}
}