I have a schema that seems to be creating a single...
# prisma-whats-new
b
I have a schema that seems to be creating a single sided relation in my data:
Copy code
type User @model {
  id: ID! @isUnique # read-only (managed by Graphcool)
  facebookFriends: [User!]! @relation(name:"FacebookFriends")
}
Anybody know why this is happening?