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 |
int
|
ID of an existing |
required |
task_list |
list[TaskCreateV2]
|
List of |
required |
db |
Session
|
Synchronous database session |
required |
Returns:
Type | Description |
---|---|
TaskGroupV2
|
Updated |
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 45 46 47 |
|