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.
adampax
Using the titanium library v1.1.8, I get the following error:
` {"name":"RequestTimeoutError","description":"The request timed out.","debug":"timeout"}`
Example query:
~~~
var query = new Kinvey.Query();
query.fields([ 'name', 'recipeCategory' ]);
var promise = Kinvey.DataStore.find('recipes', query, {
relations : { recipeCategory: 'references' },
success: function(response) {
console.log('success: ' + response.length);
},
error: function(response){
Ti.API.error(JSON.stringify(response));
}
});
~~~