NestJS - Database with TypeORM
Given this QueryBuilder snippet, what is the output?
const count = await this.orderRepository.createQueryBuilder('order')
.where('order.status = :status', { status: 'shipped' })
.getCount();