As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Pad Pinoy After Dark
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?