typeorm#Raw TypeScript Examples
The following examples show how to use
typeorm#Raw.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AppointmentsRepository.ts From gobarber-api with MIT License | 6 votes |
public async findAllInMonthFromProvider({
provider_id,
month,
year,
}: IFindAllInMonthFromProviderDTO): Promise<Appointment[]> {
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'MM-YYYY') = '${parsedMonth}-${year}'`,
),
},
});
return appointments;
}
Example #2
Source File: AppointmentsRepository.ts From gobarber-api with MIT License | 6 votes |
public async findAllInDayFromProvider({
provider_id,
day,
month,
year,
}: IFindAllInDayFromProviderDTO): Promise<Appointment[]> {
const parsedMonth = String(month).padStart(2, '0');
const parsedDay = String(day).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'DD-MM-YYYY') = '${parsedDay}-${parsedMonth}-${year}'`,
),
},
relations: ['user'],
});
return appointments;
}
Example #3
Source File: AppointmentsRepository.ts From hotseat-api with MIT License | 6 votes |
public async findByMonthFromProvider({
provider_id,
year,
month,
}: IFindByMonthFromProviderDTO): Promise<Appointment[]> {
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'MM-YYYY') = '${parsedMonth}-${year}'`,
),
},
});
return appointments;
}
Example #4
Source File: AppointmentsRepository.ts From hotseat-api with MIT License | 6 votes |
public async findByDayFromProvider({
provider_id,
day,
month,
year,
}: IFindByDayFromProviderDTO): Promise<Appointment[]> {
const parsedDay = String(day).padStart(2, '0');
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'DD-MM-YYYY') = '${parsedDay}-${parsedMonth}-${year}'`,
),
},
relations: ['customer'],
order: {
date: 'ASC',
},
});
return appointments;
}
Example #5
Source File: AppointmentsRepository.ts From gobarber-project with MIT License | 6 votes |
public async findAllInMonthFromProvider({
provider_id,
month,
year,
}: IFindAllInMonthFromProviderDTO): Promise<Appointment[]> {
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'MM-YYYY') = '${parsedMonth}-${year}'`,
),
},
});
return appointments;
}
Example #6
Source File: AppointmentsRepository.ts From gobarber-project with MIT License | 6 votes |
public async findAllInDayFromProvider({
provider_id,
day,
month,
year,
}: IFindAllInDayFromProviderDTO): Promise<Appointment[]> {
const parsedDay = String(day).padStart(2, '0');
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'DD-MM-YYYY') = '${parsedDay}-${parsedMonth}-${year}'`,
),
},
relations: ['user'],
});
return appointments;
}
Example #7
Source File: AppointmentsRepository.ts From GoBarber with MIT License | 6 votes |
public async findAllInMonthFromProvider({
provider_id,
month,
year,
}: IFindAllInMonthFromProviderDTO): Promise<Appointment[]> {
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'MM-YYYY') = '${parsedMonth}-${year}'`,
),
},
});
return appointments;
}
Example #8
Source File: AppointmentsRepository.ts From GoBarber with MIT License | 6 votes |
public async findAllInDayFromProvider({
provider_id,
day,
month,
year,
}: IFindAllInDayFromProviderDTO): Promise<Appointment[]> {
const parsedDay = String(day).padStart(2, '0');
const parsedMonth = String(month).padStart(2, '0');
const appointments = await this.ormRepository.find({
where: {
provider_id,
date: Raw(
dateFieldName =>
`to_char(${dateFieldName}, 'DD-MM-YYYY') = '${parsedDay}-${parsedMonth}-${year}'`,
),
},
relations: ['user'],
});
return appointments;
}