I'm trying to update the flow schedule using graph...
# ask-community
c
I'm trying to update the flow schedule using graphql, there is an option in UI under setting where I can modify schedule. I want something similar in graphql
I tried updating schedule using this
Copy code
mutation {update_flow(where: {id: {_eq:"089febec-ea31-47d4-b7b5-84848555e488"}}, _set: {schedule: {_eq:"*/2 * * * *"}}){affected_rows}}
but the change only reflects in query and actual flow still run on previous schedule
k
Hi @Chhaya Vankhede, I think the code snippet here will help you with that
👍 1