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.
ok, i am having trouble fetching the object. Let's say I have two collections, CollectionA and CollectionB, CollectionA has a kinvet reference to CollectionB. Data is successfully stored on the database, and when I retrieve it, I get the correct _id associated with CollectionA and the reference in CollectionB like so:
But... when I try to do CollectionA.getMyObject().getResolvedObject, it will return null
Can anyone shed light on this?
Thanks
Ramo,
You should be able to do this simply by invoking appdata.get as outlined in the relationalData - Fetching part of the java guide.
http://devcenter.kinvey.com/java/guides/datastore#relational-data-fetching
Thanks,
AmarT
public class Question extends GenericJson
{
@Key
String qid;
@Key
String question;
}
public class Response extends LinkedGenericJson
{
@Key
String uid;
@Key
KinveyReference questionId;
@Key
String answer;
}
i am successfully saved and fetched
I want to access the the 'Question' collection fields from the Response class object when it is fetched from the database..
1 person has this question