How to return populated field with count and with data?

I’m using strapi.entityService.findMany()

populate: {
                likes: {
                    fields: ['id'],
                    filters: {
                        id: ctx.state.user.id,
                    },
                    count: true,
                },
 "likes": {
            "count": 1
        },

if I do this:

populate: {
                likes: {
                    fields: ['id'],
                    filters: {
                        id: ctx.state.user.id,
                    },
                },
            },

get this:

"likes": [
            {
                "id": 1
            }
        ],

How to get both value together?

Did you get an answer ?