just looking through the `prisma` docs, these mode...
# prisma-whats-new
p
just looking through the
prisma
docs, these models in particlular. Do you not need to specify
@relation
any longer? I believe previously in
graphcool
you did have to.
Copy code
type Post {
id: ID! @unique
title: String!
isPublished: Boolean!
author: User!
}

type User {
id: ID! @unique
age: Int
email: String! @unique
name: String!
posts: [Post!]!
}
j
no you don't need it anymore
I see that when I made a
prisma deploy
it can ask me sometimes to add one when it needs
p
ok, but this has changed - good to know. I will figure out the differences