Mutations

The mutation type defines GraphQL operations that change data on the server.

About mutations

Every GraphQL schema has a root type for both queries and mutations. The mutation type defines GraphQL operations that change data on the server. It is analogous to performing HTTP verbs such as POST, PATCH, and DELETE.

For more information, see Form calls with GraphQL.

createEvent

Create a new event.

Type: CreateEventPayload!

Arguments for createEvent

NameDescription
input (CreateEventInput!)

Input data for creating the event.

createTopic

Create a new topic on the platform.

Type: CreateTopicPayload!

Arguments for createTopic

NameDescription
input (CreateTopicInput!)

Input data for creating the topic.

deleteEvent

Delete an existing event.

Type: DeleteEventPayload!

Arguments for deleteEvent

NameDescription
input (DeleteEventInput!)

Input data for deleting the event.

deleteTopic

Delete an existing topic.

Type: DeleteTopicPayload!

Arguments for deleteTopic

NameDescription
input (DeleteTopicInput!)

Input data for deleting the topic.

updateEvent

Update an existing event.

Type: UpdateEventPayload!

Arguments for updateEvent

NameDescription
input (UpdateEventInput!)

Input data for updating the event.

updateTopic

Update an existing topic.

Type: UpdateTopicPayload!

Arguments for updateTopic

NameDescription
input (UpdateTopicInput!)

Input data for updating an existing topic.