LastName returns the value of the "last_name" field in the mutation.
()
| 14553 | |
| 14554 | // LastName returns the value of the "last_name" field in the mutation. |
| 14555 | func (m *UserMutation) LastName() (r string, exists bool) { |
| 14556 | v := m.last_name |
| 14557 | if v == nil { |
| 14558 | return |
| 14559 | } |
| 14560 | return *v, true |
| 14561 | } |
| 14562 | |
| 14563 | // OldLastName returns the old "last_name" field's value of the User entity. |
| 14564 | // If the User object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected