I'm using remix + mongodb + prisma.
We have a field whose value is always a number. For some unknown reason it has been assigned a type of string. There are around 5000 collections in it.
Now I want to modify the field type to number, so that we can do proper comparision in our logic. For example, if we want to delete all the records which are greater than 3450. We can not do it if the field is a string or can we?? No?