DeleteEventNoteInput
Defines the input for deleting a note in an event.
input DeleteEventNoteInput {
contactId: ID!
eventId: ID!
noteId: ID!
}
Fields
DeleteEventNoteInput.contactId
● ID!
non-null scalar
The identifier of the contact the note is associated with.
DeleteEventNoteInput.eventId
● ID!
non-null scalar
The identifier of the event the note is associated with.
DeleteEventNoteInput.noteId
● ID!
non-null scalar
The identifier of the note.
Member Of
deleteEventNote
mutation