Hello! There seems to be a bug when using _count in a nested query. In this example, the query looks something like this: prisma.users.findMany() ->{ include(stories) } -> { include(mediaContent) } -> { include(likes) && include(views) &&_count (likes, views) }.
But as you can see in the second screenshot, likes has 2 elements in it, but the count is 0. Is this tracked anywhere?