When I define the schema in Prisma like this:
value Decimal? @db.Decimal(7, 4)
Why do I always get this format when retrieving the value from the database:
"value": {
"s": 1,
"e": 0,
"d": [
1
]
The actual value is stored within the "d" property. However, I only want to retrieve the value as "value": 1 without the additional "s" and "e" properties.