According to this issue comment, TypeORM enables you to use any queries to your heart’s content. using entityManager.query()
Here is the documentation.
UPDATE
Link above is outdated, try this instead entity-manager-api.
const rawData = await manager.query(`SELECT * FROM USERS`);