I want to define integer array filed. When i'm define integer array type like this in my loopback4 model file @property({ type: 'array', itemType: 'number', }) option?: number[]; when i'm run "npm run ...
I am trying to store array in my entity classes. According to the Dialect documentation, I should use a kotlin.Array in my entity data class. However as soon as I add an Array in my entity data class, ...