Madison Schott
06/29/2022, 4:01 PMdata_pipeline_prod
that we want to somehow label that it is deprecated? And then change the one with test in its name to the new data_pipeline_prod
? Or any suggested ways to do this?James Sopkin
06/29/2022, 4:06 PMdata_pipeline_test
with the flow name of data_pipeline_prod
and the prod project? Or do you need to keep the deprecated pipeline?Madison Schott
06/29/2022, 4:18 PMJames Sopkin
06/30/2022, 8:35 PMwith Flow("flow") as flow:
FlowRunRename({id}, "new_name")
or by making running a mutation query in the interactive api
mutation {
set_flow_run_name(input: {flow_run_id:{id}, name: "new_name"}) {
success
}
}
Unfortunately, this would only rename a single flow run, but not the flow itself. I believe it is possible to rename flow projects, but not rename a flow.Madison Schott
06/30/2022, 8:57 PMJames Sopkin
06/30/2022, 9:03 PMMadison Schott
06/30/2022, 9:07 PMJames Sopkin
06/30/2022, 9:09 PMMadison Schott
06/30/2022, 9:10 PM