Please I need help with following and follower rel...
# prisma-whats-new
j
Please I need help with following and follower relationship on user. There are many ways to do this, but i need to reduce the depth circle of the schema so here is what i need? type User { followers: [User!]! @relation ("follwers") following: [User!]! @relation ("following") } So how to resolve the followers is whats giving me hicks, as following which is all users following is trivia with this schema. Suggestions welcome. Im trying to avoid an extra schema like Follow schema