type Post @model id: ID! title: String! content: String! author: String! createdAt: AWSDateTime! updatedAt: AWSDateTime!
type Subscription onPostCreated: Post @aws_subscribe(mutations: ["createPost"]) appsync repo
type Mutation createPost(input: CreatePostInput!): Post @aws_cognito_user_pools type Post @model id: ID