Add github actions, refactor seed and beer p likes

This commit is contained in:
Aaron William Po
2023-02-09 02:23:18 -05:00
parent d8ae58844c
commit c2eb4d1371
10 changed files with 299 additions and 483 deletions

View File

@@ -0,0 +1,15 @@
import { BeerPost } from '@prisma/client';
type BeerRecommendationQueryResult = BeerPost & {
brewery: {
id: string;
name: string;
};
beerImages: {
id: string;
alt: string;
url: string;
}[];
};
export default BeerRecommendationQueryResult;