Hi. In my app, User table has one-to-many relationship with Car table. After login the user and fetching that relationship data, i get HashMap<String, Object>[] for user.getProperty(“cars”), but i would like to get List<Car>, just like when executing a regular backendless query for other tables with relationships. Is there a simple way to get this for User table? I have checked Android documentation, but still don´t know if i have to subclass BackendlessUser, or use a custom serializer, etc