Límite

const users = await dataSource.getRepository(User).find({
    where: { isAdmin: true },
    cache: 60000,
})
Puzzled Puffin