I am setting up my first Strapi project.
I am still a bit curious, how you are able to model all the typical business models.
For example if I need to store prices/amounts in a database I would go for an integer field in the database.
$1.40 are represented by 140 (cents). That keeps things like MySQL's DECIMAL type and float/double issues away.
Is it possible to use some sort of viewtransformers to input Decimal Values like "1.40" and let the real value be 140 in the strapi content ui?