AddFileIDs adds the "files" edge to the File entity by IDs.
(ids ...int)
| 226 | |
| 227 | // AddFileIDs adds the "files" edge to the File entity by IDs. |
| 228 | func (uu *UserUpdate) AddFileIDs(ids ...int) *UserUpdate { |
| 229 | uu.mutation.AddFileIDs(ids...) |
| 230 | return uu |
| 231 | } |
| 232 | |
| 233 | // AddFiles adds the "files" edges to the File entity. |
| 234 | func (uu *UserUpdate) AddFiles(f ...*File) *UserUpdate { |
no outgoing calls
no test coverage detected