but all of example are load a collection of child objects for a specific parent object.
In example, find contacts for a specific phone book.
how do I find phone book for a specific contact. Please, show me code example.
I can’t use auto load in order to load User when load answers. I want to get answers from question.objectId specific
and sort them by created(at first, I use LoadRelationsQueryBuilder but it don’t have setsortby() so, I use invert relation retrieval) but auto load not work, return answer.getUser()==null.
Question(answers, user,…) -> answers and user are relation columns
Answer(user,…) -> user is relation column point Users(default)
class Question, Answer have property BackendlessUser user;