Cannot create property 'coordinates' on string 'MultiPolygon' mongoose
// Using NestJs, you can define polygon or multipolygon schemas using raw format
import { ..., raw } from '@nestjs/mongoose';
@Prop(
raw({
type: { type: String, enum: ['Polygon', 'MultiPolygon'] },
coordinates: { type: [[[[Number]]]] }
})
)
location: Record<string, any>;