Exploring Nest Js and prisma led me to the need to store DateTime data in my database based on my timezone preferences.
joining DateTime @db.Timestamptz(5)
` I found that using @db.Timestamptz resolved my timezone storage issue, but upon retrieval from the db, it automatically converts to GMT format 2022-12-01T06:56:54.240Z
Any insights into why this conversion occurs?
Making my way through Nest and Prisma as a beginner, I'm unsure of the underlying reasons for this behavior.