I got this issue during query using sails.js
code: 'E_INVALID_CRITERIA',
details: 'Could not use the provided `where` clause. Could not filter by `book.bookId`: Cannot use dot notation in a constraint target without enabling experimental support for "deep targets". Please try again with `.meta({enableExperimentalDeepTargets:true})`.
This is my query. It's very simple
let result = await sails.models.collectionName.find({"book.bookId": 23});
I tried adding .meta({enableExperimentalDeepTargets:true})
in my query but still it's not working.
How should I do. I'm just new in nodejs
, mongodb
, and sails.js