What is returned from Mongoose query that finds no matches?

后端 未结 2 1525
太阳男子
太阳男子 2021-01-30 20:59

I\'m a little confused reading the Mongoose documentation.

If I run a query in mongoose which matches no documents in the collection, what are the values of err

2条回答
  •  半阙折子戏
    2021-01-30 21:37

    If conditions were valid but no matches were found:

    • find: err is null, result is []

    • findOne and findById: err is null, result is null

    However, if some condition was invalid (e.g. field is string but you pass an object, or you pass an invalid _id)

    For all three: err is {..}, result is undefined

提交回复
热议问题