Is it possible to update a registered flow's proje...
# prefect-server
l
Is it possible to update a registered flow's project value (effectively moving it to a different project without changing anything else, like the flow's run history, etc.)?
k
That…I don’t think is possible unfortunately
👍 1
Wait, you can!
l
graphql mutation?
k
Try this yeah
Copy code
mutation {
  update_flow_project(input: {flow_id: "", project_id: ""})
}
l
awesome, thanks!
do you think it's possible to only mutate the flow's name similarly?
k
Let’s find out
That I dont think so
l
ok thanks for trying it out