CreatedAt returns the value of the "created_at" field in the mutation.
()
| 14383 | |
| 14384 | // CreatedAt returns the value of the "created_at" field in the mutation. |
| 14385 | func (m *UserMutation) CreatedAt() (r time.Time, exists bool) { |
| 14386 | v := m.created_at |
| 14387 | if v == nil { |
| 14388 | return |
| 14389 | } |
| 14390 | return *v, true |
| 14391 | } |
| 14392 | |
| 14393 | // OldCreatedAt returns the old "created_at" field's value of the User entity. |
| 14394 | // If the User object wasn't provided to the builder, the object is fetched from the database. |
no outgoing calls
no test coverage detected