HiI have university as parent object & college as child object.There is a master-detail relationship defined on child object i.e collegeI have a parent-child soql as followsList<University__c> univList=[select Name,(select Name from colleges__r) from university__c];system.debug(univList);Also I have a child-parent soql as followsList<college__c> univList=[select Name,university__r.Name from college__csystem.debug(univList);when I execute the parent-child query I do not get any child related records .Also when I execute child-parent query I do get the name of the college but the university ID I get but I want the university name also not the IDplease let me know.Thankspooja