AddTaskIDs adds the "tasks" edge to the Task entity by IDs.
(ids ...int)
| 286 | |
| 287 | // AddTaskIDs adds the "tasks" edge to the Task entity by IDs. |
| 288 | func (uu *UserUpdate) AddTaskIDs(ids ...int) *UserUpdate { |
| 289 | uu.mutation.AddTaskIDs(ids...) |
| 290 | return uu |
| 291 | } |
| 292 | |
| 293 | // AddTasks adds the "tasks" edges to the Task entity. |
| 294 | func (uu *UserUpdate) AddTasks(t ...*Task) *UserUpdate { |
no outgoing calls
no test coverage detected