Hi, I have a question. Is there a way to add where...
# orm-help
a
Hi, I have a question. Is there a way to add where condition to _count? For example:
Copy code
_count: {
    select: {
        posts: true
    },
    where: {
        posts: {
            deletedAt: {
                equals: null
            }
        }
    }
}