FileIDs returns the "file" edge IDs in the mutation.
()
| 2390 | |
| 2391 | // FileIDs returns the "file" edge IDs in the mutation. |
| 2392 | func (m *EntityMutation) FileIDs() (ids []int) { |
| 2393 | for id := range m.file { |
| 2394 | ids = append(ids, id) |
| 2395 | } |
| 2396 | return |
| 2397 | } |
| 2398 | |
| 2399 | // ResetFile resets all changes to the "file" edge. |
| 2400 | func (m *EntityMutation) ResetFile() { |
nothing calls this directly
no outgoing calls
no test coverage detected