dimana typeorm

const posts = await manager.createQueryBuilder(Post, "post")
    .where("post.authorId IN (:authors)", { authors: [3, 7, 9] })
    .orderBy("post.createDate")
    .getMany();
Restu Wahyu Saputra