Can anybody help me with a graphQL problem. I need...
# ask-community
p
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
Hey, try this?
Copy code
query {
  flow (where:{schedule: {_is_null: false}}){
    id
    name
    schedule
  }
}
upvote 1
p
Thanks a lot, you saved my skin.
👍 1