11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import prisma from "app/prisma"
|
|
|
|
export const getPostsByUser = async (userId: number) => {
|
|
const posts = await prisma.post.findMany({
|
|
where: {
|
|
|
|
}
|
|
})
|
|
|
|
return posts
|
|
}
|