Full text search with Sails.js Full text search with Sails.js express express

Full text search with Sails.js


You might be able to do something like this:

Model.find({ class: { 'like': '%history%' }})

Which, according to the documentation, is akin to this:

Model.find({ class: { 'contains': 'history' }})

It would be good for you to give an example of what you are attempting, codewise.