AddFileIDs adds the "file" edge to the File entity by IDs.
(ids ...int)
| 204 | |
| 205 | // AddFileIDs adds the "file" edge to the File entity by IDs. |
| 206 | func (eu *EntityUpdate) AddFileIDs(ids ...int) *EntityUpdate { |
| 207 | eu.mutation.AddFileIDs(ids...) |
| 208 | return eu |
| 209 | } |
| 210 | |
| 211 | // AddFile adds the "file" edges to the File entity. |
| 212 | func (eu *EntityUpdate) AddFile(f ...*File) *EntityUpdate { |
no outgoing calls
no test coverage detected