I have 3 models
Publications → User → Validation
And an endpoint /publications/fromUsersIFollow
When I make a request, I get all the publications data and almost all Validation data
ex.
(publication) { user:{ validation:id } }
and what I want is
(publication) { user:{ validation:{ } } }
I tried the populated thing
let publications = await strapi.services.publication.find(filter,["user.validation"])
But still brings the validation.id instead of the object.
What I’m missing or doing wrong?