I have collection A (actors):
[{title: mike}, ... ]
And collection B (movies) referencing to A:
[{title: movie, year: 2020, actors: [mike]}, ... ]
When I use GET to retrieve from movies collection it will only return
{title: movie, year: 2020}
Not including actors field
Do I need to add an additional step to query referenced or is there any way to pull all the information at once?