FirstName returns the value of the "first_name" field in the mutation.
()
| 14504 | |
| 14505 | // FirstName returns the value of the "first_name" field in the mutation. |
| 14506 | func (m *UserMutation) FirstName() (r string, exists bool) { |
| 14507 | v := m.first_name |
| 14508 | if v == nil { |
| 14509 | return |
| 14510 | } |
| 14511 | return *v, true |
| 14512 | } |
| 14513 | |
| 14514 | // OldFirstName returns the old "first_name" field's value of the User entity. |
| 14515 | // If the User object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected