Hi folks, is it possible to delete or "unregister"...
# ask-community
a
Hi folks, is it possible to delete or "unregister" a flow with a graphql call? I can see in the docs about deleting flow runs, but I want to programmatically remove a flow from a server altogether.
c
Hi Aiden! Yes, you can do either using the following mutations: •
delete_flow
archive_flow
both of which accept a single flow ID input
a
Cool, thank you!