typeorm findandcount orderby

userRepository.find({
    order: {
        name: "ASC",
        id: "DESC"
    }
});
Anass Azeroual