I was trying to...
I'm wrapping an external api inside my NestJS api and start to face the problem when comes to validate a dynamic key. This external api expect that this key match a named row and then try to update.
The problem:
My JSON looks like:
"grid": [ { "dynamic-row-name": [ { //nestedObject } ] } ]
This is it possible to validate using class-validator?
I was trying to...
I'm wrapping an external api inside my NestJS api and start to face the problem when comes to validate a dynamic key. This external api expect that this key match a named row and then try to update.
The problem:
My JSON looks like:
"grid": [ { "dynamic-row-name": [ { //nestedObject } ] } ]This is it possible to validate using class-validator?