Skip to content
Advertisement

Unable to select certain fields in MongoDB (Mongoose) result

I’ve ran into a bit of an odd issue with a mongoose result. I can select one value from the object, but not another.

For example I’m calling

JavaScript

I get a result and im console logging out the entire product. The result is:

JavaScript

I can log out the storePrice field

JavaScript

However if I try to log out the dropDate and totalLikes fields I get undefined

JavaScript

Any ideas why these fields are returning undefined when i try to access them? Even though they exist in the object?

Advertisement

Answer

It’s because Mongoose by default hydrate the documents returned, so they are not pure JavaScript objects.

If you want to return pure JavaScript objects, you should add .lean() to your query. That will in addition increase the performance:

JavaScript

You can find more info in the official docs.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement