Mutation
mutation DeleteEvent($input: DeleteEventInput!) {
deleteEvent(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteEvent": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}Mutations
deleteEvent
Delete an event
Required scopes: write:posts, host:write:network_events (any one)
MUTATION
deleteEvent(input: DeleteEventInput!): DeleteEventPayloadArguments
input
required
Parameters for DeleteEvent
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedId
ID
errors
[String!]!
Mutation
mutation DeleteEvent($input: DeleteEventInput!) {
deleteEvent(input: $input) {
clientMutationId
deletedId
errors
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"deleteEvent": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
]
}
}
}