Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 23, 2020 21:49
Show Gist options
  • Select an option

  • Save nmchenry01/a138adaf8e952293684e86b3bde91cf1 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/a138adaf8e952293684e86b3bde91cf1 to your computer and use it in GitHub Desktop.
Raw SQL TypeORM for "Prisma vs. TypeORM"
const rawSQLQuery = async () => {
const companyRepository = getRepository(Company);
return companyRepository.query('SELECT * FROM "company"');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment