Skip to main content

UpdateEventNoteInput

Defines the input for updating a note in an event.

input UpdateEventNoteInput {
content: String
customFields: [CustomFieldInput!]
eventId: ID!
noteId: ID!
noteTypeId: ID
}

Fields​

UpdateEventNoteInput.content ● String scalar​

The text content of the note. Optional.

UpdateEventNoteInput.customFields ● [CustomFieldInput!] list input​

The custom fields to create or update for the note. Optional.

UpdateEventNoteInput.eventId ● ID! non-null scalar​

The identifier of the event the note is associated with.

UpdateEventNoteInput.noteId ● ID! non-null scalar​

The identifier of the note.

UpdateEventNoteInput.noteTypeId ● ID scalar​

The identifier of the note type of the note. Optional.

Member Of​

updateEventNote mutation