// schema.ts
updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow()
"updatedAt": "1748179197314"
I believe timestamp milliseconds inside string is not an appropriate result for a datetime columns.
// src/util/type-converter/index.ts#L75
case 'date':
return { type: GraphQLString, description: 'Date' };
For example,
in GQL response
I believe timestamp milliseconds inside string is not an appropriate result for a datetime columns.
https://github.com/drizzle-team/drizzle-graphql/blob/main/src/util/type-converter/index.ts#L75