// typeorm find example: search with pagination const video = await connection.getRepository(Video).find({ where: { title: Like(`%${title}%`) }, //relations: { exampleRelation1234: true}, take: Number(limit), skip: skip, });