Hi there :wink: Is it possible to use another reso...
# orm-help
h
Hi there 😉 Is it possible to use another resolver as a middleware? For example, I have
Copy code
type User {
  posts: [Post!]!
  rank: Rank!
}
I want to calculate the rank using the number of posts, and I hope I can reuse the code in the
posts
resolver.