How good is Prisma with Json fields?
I'm struggling to decide which DB to use with Prisma for Json objects?
I will need to have filters for fields in Json object which looks like this, it has many fields...
my questions are: is Prisma good for handling Json objects and would it be better to use MongoDB instead of Postgre?
details: {
attacking: {
goals,
assists,
...
},
defending: {
interceptions
....
},
passing: {
passes,
successfull passses,
....
},
},
0 Replies