I did an introspection of a MongoDB from Prisma using the command 'prisma db pull'. This detected all number fields as integers (both long and int) and created the following entry in prisma.schema:
Index Int // Here I search for something like 'Int32'
To enable compatibility with 32bit applications I am currently looking for a way to explicitly declare the Int fields as 32bit integers - so far without success. No schema or similar is used in the database yet.
The datatypes for numeric datatypes in MongoDB with Prisma are described here
Does anyone know a way to declare this explicitly?
Thanks in advance!