CreatedAt returns the value of the "created_at" field in the mutation.
()
| 4148 | |
| 4149 | // CreatedAt returns the value of the "created_at" field in the mutation. |
| 4150 | func (m *GroupMutation) CreatedAt() (r time.Time, exists bool) { |
| 4151 | v := m.created_at |
| 4152 | if v == nil { |
| 4153 | return |
| 4154 | } |
| 4155 | return *v, true |
| 4156 | } |
| 4157 | |
| 4158 | // OldCreatedAt returns the old "created_at" field's value of the Group entity. |
| 4159 | // If the Group object wasn't provided to the builder, the object is fetched from the database. |