friends! I want to get the selected columns of my object from the database, as well as the selected columns of the related objects. But when I execute my query, I get the data but the related objects are not converted into separate arrays but are returned in the general array of the main requested object.
My query:
$query = $this->createQueryBuilder('i')
->select('i.id', 'i.payStatus', 'contract.id as contract_id', 'contract.type as type')
->join('i.contract', 'contract');
return $query->getQuery()->getResult();
Current result:
{
"id": 56,
"payStatus": 2,
"contract_id": 5,
"type": 2
}
Expected Result:
{
"id": 56,
"payStatus": 2,
"contract": {
"contract_id": 5,
"type": 2
}
}
I would be grateful for any help!
When you select multiple scalar fields, doctrine always returns flat array with all the "columns".
There are two options I see:
$query->getQuery()->getResult()
in your query method, map it yourself and return the mapped results.