admin管理员组文章数量:1341736
I am trying to create a one-to-many relationship between a user and posts. I can create the database schema and can write / query all ok but it appears the prisma client that is being generated doesn't have the relationships on the type.
For example, my schema looks like this:
model User {
id Int @id @default(autoincrement())
posts Post[]
}
model Post {
id Int @id @default(autoincrement())
author User @relation(fields: [authorId], references: [id])
authorId Int
}
I then run npx prisma generate
which creates a client with the following types
/**
* Model User
*
*/
export type User = {
id: number
}
/**
* Model Post
*
*/
export type Post = {
id: number
authorId: number
}
I would expect the user type to look like this:
export type User = {
id: number;
posts: Post[];
}
Have I defined my Prisma schema correctly? What do I need to do to get the type to include the relation?
I am trying to create a one-to-many relationship between a user and posts. I can create the database schema and can write / query all ok but it appears the prisma client that is being generated doesn't have the relationships on the type.
For example, my schema looks like this:
model User {
id Int @id @default(autoincrement())
posts Post[]
}
model Post {
id Int @id @default(autoincrement())
author User @relation(fields: [authorId], references: [id])
authorId Int
}
I then run npx prisma generate
which creates a client with the following types
/**
* Model User
*
*/
export type User = {
id: number
}
/**
* Model Post
*
*/
export type Post = {
id: number
authorId: number
}
I would expect the user type to look like this:
export type User = {
id: number;
posts: Post[];
}
Have I defined my Prisma schema correctly? What do I need to do to get the type to include the relation?
Share asked Sep 6, 2022 at 18:20 Stretch0Stretch0 9,29315 gold badges93 silver badges159 bronze badges 1-
I've noticed that the
ctx.prisma.menu.findFirst
method has a return type of(User & { posts: Post[]; })
Is the only way to bine the types manually? – Stretch0 Commented Sep 6, 2022 at 18:36
1 Answer
Reset to default 13By default, a Prisma type will not include relational fields in the base "type". If you want to get the type of your User
which includes related Posts
, the Prisma client will include that based on the structure of your query.
https://www.prisma.io/docs/concepts/ponents/prisma-client/select-fields
You can use the include
attribute on any Prisma CRUD operation to have the Prisma client return specific relational fields, AND those related fields are included in the emitted type. Prisma will take care of this typing for you!
const usersWithPosts = await prisma.user.findMany({
include: {
posts: true
}
});
// usersWithPosts has a type like this:
// Array<User & { posts: Array<Post> }>
========
EDIT: If you want to pute the type in advance without wanting to write a query, you can use Prisma.UserGetPayload
(or some other form of GetPayload
, as the prefix will change based on the model.)
type UserWithPosts = Prisma.UserGetPayload<{
include: {
posts: true;
};
}>;
This emits the following type:
type UserWithPosts = User & {
posts: Post[];
}
本文标签: javascriptHow to get Prisma client to generate relationship typesStack Overflow
版权声明:本文标题:javascript - How to get Prisma client to generate relationship types - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743684263a2521631.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论