Hello Dagster experts, Is there way to switch on/...
# ask-community
w
Hello Dagster experts, Is there way to switch on/off of job schedules programmatically other than go through dagit UI?
j
It’s possible via the graphql api. There’s also the option to set a
default_status
so that they’re on by default
Copy code
@schedule(job=my_job, cron_schedule="0 0 * * *", default_status=DefaultScheduleStatus.RUNNING)
❤️ 1
w
Thanks for the fast response and support 🙂!
j
Lastly there’s
dagster schedule start --start-all