Mutation
mutation DeleteEventInstance($input: DeleteEventInstanceInput!) {
deleteEventInstance(input: $input) {
clientMutationId
deletedId
errors
event {
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
cheersEnabled
}
}
}Variables
{
"input": {
"eventId": "id",
"instanceIndex": "string"
}
}Response
{
"data": {
"deleteEventInstance": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
],
"event": {
"assets": [
{
"aspectRatio": 1.5,
"assetStyle": "string",
"contentType": "string",
"fileSize": "string",
"id": "id",
"imageUrl": "string"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1,
"cheersEnabled": true
}
}
}
}Mutations
deleteEventInstance
Delete a single occurrence of a recurring event, optionally messaging attendees.
Required scopes: write:posts, host:write:network_events (any one)
MUTATION
deleteEventInstance(input: DeleteEventInstanceInput!): DeleteEventInstancePayloadArguments
input
required
Parameters for DeleteEventInstance
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
deletedId
ID
errors
[String!]!
event
Mutation
mutation DeleteEventInstance($input: DeleteEventInstanceInput!) {
deleteEventInstance(input: $input) {
clientMutationId
deletedId
errors
event {
assets {
aspectRatio
assetStyle
contentType
fileSize
id
imageUrl
}
body
bodyHtml
bodyText
cheerCount
cheersEnabled
}
}
}Variables
{
"input": {
"eventId": "id",
"instanceIndex": "string"
}
}Response
{
"data": {
"deleteEventInstance": {
"clientMutationId": "string",
"deletedId": "id",
"errors": [
"string"
],
"event": {
"assets": [
{
"aspectRatio": 1.5,
"assetStyle": "string",
"contentType": "string",
"fileSize": "string",
"id": "id",
"imageUrl": "string"
}
],
"body": "string",
"bodyHtml": "string",
"bodyText": "string",
"cheerCount": 1,
"cheersEnabled": true
}
}
}
}