After Query i did not receive complete data for the object

Hello there
i am facing one issue, that after querying data when i get data then ‘some” values are not parsed and some values are parsed in my class object , i am attaching one screenshot and attaching link of project ZIP. For example
In my phonebook class i have many columns
name
name1
name2
name3
Studentlist (List of student)
Owner (student type)
values name, name1, name2, name3 are parsed in callback but studentlist and owner are not parsed.
I am using Android sdk of backendless
link of my project

Could you please post a screenshot of the “phonebook” table schema?

I am sharing credentials of my account
gunjan@skycap.co.in
Gunjan1@

The “owner” and “studentList” are relations. When you run a “find” request, the related objects are not loaded by default. You need to request them to be loaded with API. For example:

    BackendlessDataQuery dataQuery = new BackendlessDataQuery();
    QueryOptions queryOptions = new QueryOptions();
    queryOptions.addRelated( "owner" );
    queryOptions.addRelated( "studentList" );
    dataQuery.setQueryOptions( queryOptions );

Regards,
Mark

oh ok got it , so similar concept like parse’s query.include(column_no) method.

Thanks