TypeORM-readme-23.ts
· 192 B · TypeScript
Bruto
import { Photo } from "./entity/Photo"
import { AppDataSource } from "./index"
const savedPhotos = await AppDataSource.manager.find(Photo)
console.log("All photos from the db: ", savedPhotos)
1 | import { Photo } from "./entity/Photo" |
2 | import { AppDataSource } from "./index" |
3 | |
4 | const savedPhotos = await AppDataSource.manager.find(Photo) |
5 | console.log("All photos from the db: ", savedPhotos) |