can we search for objects ??

can we do anything similar to this in backendless ?

        query.whereKey("\(countryName)", containsString: keyword)

        query.whereKey("\(countryName)", matchesRegex: keyword, modifiers: "i")

well the above is query into a single column if objects in the columns haves anything similar to ‘keyword’ the server returns that object (searching functionality) and the keyword is a word , character… anything typed by user into searchbox well everytime user is typing a new character am firing the query for searching into a column for that object if we have anything similar to this than please let me know this is what i tried :

    let whereClause = "\(countryName) LIKE '%\(keyword)%'"   // here the counrty name is a  variable  and i created  columns of countryname  so if  column have anything like 'keyword'
    let dataQuery = BackendlessDataQuery()
    dataQuery.whereClause = whereClause

thanks
billion

You’re missing single quotes around keyword.

Suppose the column name is "countryName’, then the whereClause would be:

countryName LIKE '%United%'

Will match “United States”, “United Kingdom”, “United Arab Emirates”.

The percent sign replaces anything before or after the part that must match.

okay thanks