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.
yegovik
collection1{
name:{"_type":"KinveyRef","_collection":"collection2","_id":"someId"}
}
collection2{
name:{"_type":"KinveyRef","_collection":"collection3","_id":"someId"}
}
collection3{
name:"coolName"
}
I try to fetch data from collection1 with information from collections 2 and 3. I make request:
var promise = $kinvey.DataStore.find('collection1', null, {relations: { name:"collection2"}});
But in response I have just reference to collection3.
How I can modify my request to get info from collection3? Help me please.