Appsync May 2026

type Mutation createPost(title: String!, content: String): Post

type Subscription onCreatePost: Post @aws_subscribe(mutations: ["createPost"]) appsync

type Query getPost(id: ID!): Post