I have a situation that I need a related field from the relation field.
I have 3 Entity:
- Media Object (imageUrl needed)
- Author (image)
- Comment (author)
So when I call /api/comment/1 I want to se imageUrl from the author.
I tried to add
@Groups({"author_object:read", "author"}) on media entity, and also on image of the author, but no luck...
Any tips?