What is the best way to write resolvers when your ...
# orm-help
h
What is the best way to write resolvers when your schema is not in sync with your data model? For example in the data model
Copy code
type User {
  a
  b
  c
  d
}
and my schema is
Copy code
type User {
  a
  b
  Profile
}
type Profile {
  d
  e
}