let duplicates = await Books.query()
.select('book_id')
.groupBy('book_id')
.having(knex.count('book_id'), '>', 1);
Here I want to use the count aggregator inside the having clause. How can I do that inside knex.having() function?