Jacob Blanco
05/18/2021, 5:58 AM"my_table-intrepid-iguana"
or something like that.
This would make it easier to navigate the flow runs in the Cloud UI.Kevin Kho
set_flow_run_name
given a flow_run_id. It feels like this operation might be best done with a Python script where you query for flow_runs and their parameters like this:
query {
flow_run (where: {flow_id: {_eq: "9fc3af5c-bf51-4b6f-a44b-589536432f19"}}){
id
state
parameters
flow_id
}
}
Kevin Kho
set_flow_run_name
. Not 100% sure this will work.Kevin Kho
Kevin Kho
Jacob Blanco
05/19/2021, 1:44 AMKevin Kho