type Query getPost(id: ID!): Post
type Mutation createPost(title: String!, content: String): Post appsync
type Subscription onCreatePost: Post @aws_subscribe(mutations: ["createPost"]) type Query getPost(id: ID