I am new in parse. I want to implement a search bar, my problem is that when I pass a string I don't know how to make the query to obtain the information.
// search is the string I am looking for
var search= req.body.search;
alert("search is: "+search);
var query = new Parse.Query("Place");
//When I use equalTo the name need to be exactly equal
//in SQL you can use LIKE or %search%
query.equalTo("name", search);