datamodel 추가하기

  • model을 추가할 때 주의사항

    like와 같은 type은 누가 만들었는지같은 정보도 넣어주어야합니다.

prisma datamodel

type User {
  id: ID! @id
  following: [User!]! @relation(name: "FollowRelation")
  followers: [User!]! @relation(name: "FollowRelation")
}

주의할 점

  • type을 추가할 때 예전에는 아래와 같은 형식으로 써도 추가가 되었다고 합니다. 하지만 업데이트되고 모든 type에 id를 부여해줘야 합니다.
type Comment {
user : User!
text : String!
post : Post!
}
  • id를 추가한 type
type Comment {
id: ID! @id
user : User!
text : String!
post : Post!
}