YOUR CART
- No products in the cart.
Subtotal:
$0.00
type Subscription onCreatePost: Post @aws_subscribe(mutations: ["createPost"])
type Mutation createPost(title: String!, content: String): Post
// JavaScript resolver for createPost export function request(ctx) return operation: "PutItem", key: id: Util.autoId() , attributeValues: title: ctx.args.title, content: ctx.args.content ;
type Query getPost(id: ID!): Post