Start a new topic

Titanium

I have this query



var searchkey = 'ORANGE';

var regex = new RegExp(searchkey)



var query = new Kinvey.Query();

query.matches('name',regex);



var promise = Kinvey.DatataStore.count('places', query, {

success: function(e)

{

},

error: function(err)

{

}

});





I got this error

Your query included syntax that is not supported. Please refer to the debug property or contact support for more information.



This query is working previously I dont know why its not working now. DId Kinvey did some changes?





1 Comment

I think they changed something (from Kinvey backend). I saw similar issues and it seems they fix this up as I didnt have the same error now.
Login or Signup to post a comment