Maybe it’s a stupid question but… How can I define...
# ask-community
g
Maybe it’s a stupid question but… How can I define the task name with the “_*create_flow_run*_” function?
a
@Giovanni Giacco using `task_args`:
Copy code
extract_load_id = create_flow_run(
    flow_name="extract_load",
    project_name=PROJECT_NAME,
    task_args={"name": "Staging area"},
)
g
Thank you @Anna Geller 🙏
👍 1