My Sails.js application has a model called 'Ideas' and using the default blueprint REST api, I can access the contents of the collection when I go to: http://example.com/ideas/find
Furthermore, by default, I can also limit the data to get specific titles: http://example.com/ideas/find?title=How to Watch TV
Although what I want to do is display the JSON data of ALL titles that contain the keyword 'T' but when I replace the above with the likes of
a) ?title=TV
b) ?q=TV
c) ?query=TV
d) ?where(title : (contains:'TV')
none of them work
How can I get JSON output that contains all titles that contains a particular keyword?