Search code examples
mongodbdocumentreserved-words

missing the following properties from type Location 'Location': ancestorOrigins, hash, host, hostname etc in mongodb


I was trying to create a mongodb document like

enter image description here

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.


Solution

  • 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 :)

    enter image description here