evan
10/31/2019, 3:55 PMtype Account {
createdAt: DateTime! @createdAt
updatedAt: DateTime! @updatedAt
}
I have the corresponding type-graphql type:
@ObjectType()
export class Account {
@Field()
createdAt: Date
@Field()
updatedAt: Date
}
However, createdAt and updatedAt are never applied to the record. Any ideas?