LoadFactor returns the value of the "load_factor" field in the mutation.
()
| 2961 | |
| 2962 | // LoadFactor returns the value of the "load_factor" field in the mutation. |
| 2963 | func (m *AccountMutation) LoadFactor() (r int, exists bool) { |
| 2964 | v := m.load_factor |
| 2965 | if v == nil { |
| 2966 | return |
| 2967 | } |
| 2968 | return *v, true |
| 2969 | } |
| 2970 | |
| 2971 | // OldLoadFactor returns the old "load_factor" field's value of the Account entity. |
| 2972 | // If the Account object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected