I am doing a query which looks as follows:
type=nt:unstructured
path=/content/dam/rallyhealth/ichabod/articles
p.hits=selective
nodename=master
p.properties=author featuredImage primaryCategory
The results look like:
```
{
"success": true,
"results": 2,
"total": 2,
"more": false,
"offset": 0,
"hits": [
{
"primaryCategory": "/content/dam/health",
"author": "Article Author"
},
{
"author": "Kamal"
}
]
}
```
However with GQL, I get the results as:
```
"primaryCategory": {
"_path": "/content/dam/health",
"title": "Health",
"uri": "health-resources/health"
}
```
Is there a way to tell queryBuilder to not only return the path but also the other parameters like title and uri?