Data GET not returning referenced items

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?

https://www.wix.com/corvid/reference/wix-data.WixDataQuery.html#include

(You might have to scroll up a bit. For me the link is loading slightly below where the include() docs start. Also pay attention to the notes in case queryReferenced() is more appropriate for you.)