Hey is there a graphql call that can be make to to...
# ask-community
b
Hey is there a graphql call that can be make to toggle off the schedule for a flow?
k
Hey @Ben Muller, there is the
set_schedule_inactive
mutation that takes in a flow_id.
Copy code
mutation {
  set_schedule_inactive(input: {flow_id: "509c33a0-eebc-4655-8af0-f3ec8ec27c18"}) {
    success
    error
  }
}
b
👌 🙏