Skip to main content

MutationCreateEventInput

input MutationCreateEventInput {
allDay: Boolean
attachments: [Upload!]
description: String
endAt: DateTime!
isPublic: Boolean
isRegisterable: Boolean
location: String
name: String!
organizationId: ID!
recurrence: RecurrenceInput
startAt: DateTime!
}

Fields

MutationCreateEventInput.allDay ● Boolean scalar

Indicates if the event spans the entire day

MutationCreateEventInput.attachments ● [Upload!] list scalar

Attachments of the event.

MutationCreateEventInput.description ● String scalar

Custom information about the event.

MutationCreateEventInput.endAt ● DateTime! non-null scalar

Date time at the time the event ends at.

MutationCreateEventInput.isPublic ● Boolean scalar

Indicates if the event is publicly visible

MutationCreateEventInput.isRegisterable ● Boolean scalar

Indicates if users can register for this event

MutationCreateEventInput.location ● String scalar

Physical or virtual location of the event

MutationCreateEventInput.name ● String! non-null scalar

Name of the event.

MutationCreateEventInput.organizationId ● ID! non-null scalar

Global identifier of the associated organization.

MutationCreateEventInput.recurrence ● RecurrenceInput input

Recurrence pattern for the event. If provided, creates a recurring event.

MutationCreateEventInput.startAt ● DateTime! non-null scalar

Date time at the time the event starts at.

Member Of

createEvent mutation