Mutation
mutation UpdateEventInstance($input: UpdateEventInstanceInput!) {
updateEventInstance(input: $input) {
clientMutationId
errors
eventInstance {
attendees {
ambassadorLevel
ambassadorLevelId
avatarUrl
badges {
__typename
}
conversations {
__typename
}
customFieldResponses {
__typename
}
}
endsAt
hasNext
hasPrevious
id
instanceIndex
}
}
}Variables
{
"input": {
"eventId": "id",
"instanceIndex": "string"
}
}Response
{
"data": {
"updateEventInstance": {
"clientMutationId": "string",
"errors": [
"string"
],
"eventInstance": {
"attendees": [
{
"ambassadorLevel": "string",
"ambassadorLevelId": 1,
"avatarUrl": "string",
"badges": [
{
"__typename": "Badge"
}
],
"conversations": {
"__typename": "PublicConversationConnection"
},
"customFieldResponses": {
"__typename": "MemberCustomFieldResponseConnection"
}
}
],
"endsAt": "value",
"hasNext": true,
"hasPrevious": true,
"id": "id",
"instanceIndex": "string"
}
}
}
}Mutations
updateEventInstance
Override a single occurrence of a recurring event — its start/end time or RSVP lock.
Required scopes: write:posts, host:write:network_events (any one)
MUTATION
updateEventInstance(input: UpdateEventInstanceInput!): UpdateEventInstancePayloadArguments
input
required
Parameters for UpdateEventInstance
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
eventInstance
Mutation
mutation UpdateEventInstance($input: UpdateEventInstanceInput!) {
updateEventInstance(input: $input) {
clientMutationId
errors
eventInstance {
attendees {
ambassadorLevel
ambassadorLevelId
avatarUrl
badges {
__typename
}
conversations {
__typename
}
customFieldResponses {
__typename
}
}
endsAt
hasNext
hasPrevious
id
instanceIndex
}
}
}Variables
{
"input": {
"eventId": "id",
"instanceIndex": "string"
}
}Response
{
"data": {
"updateEventInstance": {
"clientMutationId": "string",
"errors": [
"string"
],
"eventInstance": {
"attendees": [
{
"ambassadorLevel": "string",
"ambassadorLevelId": 1,
"avatarUrl": "string",
"badges": [
{
"__typename": "Badge"
}
],
"conversations": {
"__typename": "PublicConversationConnection"
},
"customFieldResponses": {
"__typename": "MemberCustomFieldResponseConnection"
}
}
],
"endsAt": "value",
"hasNext": true,
"hasPrevious": true,
"id": "id",
"instanceIndex": "string"
}
}
}
}