if I have: ``` type User { id: ID! @unique ema...
# orm-help
c
if I have:
Copy code
type User {
  id: ID! @unique
  email: String! @unique
  name: String
  followers: [User!]!
}
how can I figure out how many followers a user has...