Skip to main content

MutationUpdateEventInput

input MutationUpdateEventInput {
allDay: Boolean
description: String
endAt: DateTime
endDate: String
id: ID!
isInviteOnly: Boolean
isPublic: Boolean
isRegisterable: Boolean
location: String
name: String
startAt: DateTime
startDate: String
}

Fields

MutationUpdateEventInput.allDay ● Boolean scalar

If true, converts the event to all-day (requires startDate/endDate). If false, converts to timed (requires startAt/endAt).

MutationUpdateEventInput.description ● String scalar

Custom information about the event.

MutationUpdateEventInput.endAt ● DateTime scalar

UTC timestamp at the time the timed event ends. Only applicable when allDay is false.

MutationUpdateEventInput.endDate ● String scalar

Exclusive end date for all-day events (YYYY-MM-DD). Only applicable when allDay is true.

MutationUpdateEventInput.id ● ID! non-null scalar

Global identifier of the event.

MutationUpdateEventInput.isInviteOnly ● Boolean scalar

Indicates if the event is invite-only

MutationUpdateEventInput.isPublic ● Boolean scalar

Indicates if the event is publicly visible.

MutationUpdateEventInput.isRegisterable ● Boolean scalar

Indicates if users can register for this event.

MutationUpdateEventInput.location ● String scalar

Physical or virtual location of the event.

MutationUpdateEventInput.name ● String scalar

Name of the event.

MutationUpdateEventInput.startAt ● DateTime scalar

UTC timestamp at the time the timed event starts. Only applicable when allDay is false.

MutationUpdateEventInput.startDate ● String scalar

Inclusive start date for all-day events (YYYY-MM-DD). Only applicable when allDay is true.

Member Of

updateStandaloneEvent mutation