Slide 5
Slide 5 text
© 2018, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
GraphQL
Schema
Mutation
type Mutation {
createEvent(
name: String!,
when: String!,
where: String!,
description: String!
): Event
deleteEvent(id: ID!): Event
commentOnEvent(
eventId: ID!,
content: String!,
createdAt: String!
): Comment
}