UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

13 lines (9 loc) 262 B
import { getPrismaClient } from './prisma-client-factory'; type CountryRecord = { id: number; name: string; }; export async function getAllCountries(): Promise<CountryRecord[]> { const results = getPrismaClient().country.findMany(); return results; }