I have an employee table and in it there is a date column. I'm trying to return all employees who have the same month informed of the entry date. With the entry 2010-09-01 I want you to return all the employees you have in the column 2010-09-01 to 2010-09-30
async rangeDate(dateInput: string) {
return await this.employeeRepository
.createQueryBuilder('employee')
.where('employee.date = :dateInput')
.setParameters({ dateInput })
.getMany();
}