currently if you want to handle dates correctly for a field, you need to explicitly use a scalar, like this:
@Field({ type: GraphQLDateTime })
created_at: Date
since this is very common-it would be great to enable this behavior by default, so you can omit the explicit type:
@Field()
created_at: Date