I was trying to create a mongodb document
like
When I hover over the IUserModel
, it was giving such error
missing the following properties from type Location 'Location': ancestorOrigins, hash, host, hostname, and 9 more.
After a long time, then I came to know that location
is reserved keyword for mongodb
so I changed location
to locatedOn
and error gone :)