Home > other >  Failed to Parse error on running lookup (aggregate) - using mongodb atlas
Failed to Parse error on running lookup (aggregate) - using mongodb atlas

Time:02-02

code of the controller used postman error

it is working on local database but not working on atlas.

CodePudding user response:

Your lookup has typo,

$lookup: {
  form: <<-- this needs to be "from"
}
  • Related