const productRepository = dataSource.getRepository(Product);
const result = await productRepository
.createQueryBuilder('product')
.where('product.price < :price', { price: 100 })
.orWhere('product.color = :color', { color: 'yellow' })
.getMany();