utils_database
create_db_tasks_and_update_task_group(*, task_group_id, task_list, db)
¶
Create a TaskGroupV2
with N TaskV2
s, and insert them into the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_group |
ID of an existing TaskGroupV2 object. |
required | |
task_list |
list[TaskCreateV2]
|
A list of TaskCreateV2 objects to be inserted into the db. |
required |
db |
Session
|
A synchronous database session |
required |
Source code in fractal_server/tasks/v2/utils_database.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|