How exactly do I create the resolver for this muta...
# orm-help
a
How exactly do I create the resolver for this mutation?
Copy code
type Mutation {
    createPost(postinput: CreatePostInput!): Post!
  }


  input CreatePostInput{
    name: String
    content: String
  }