UpdateContactStoreNoteInput
Defines the input for updating a note in a contact store.
input UpdateContactStoreNoteInput {
contactStoreId: ID!
content: String
customFields: [CustomFieldInput!]
noteId: ID!
noteTypeId: ID
}
Fields
UpdateContactStoreNoteInput.contactStoreId
● ID!
non-null scalar
The identifier of the contact store the note is associated with.
UpdateContactStoreNoteInput.content
● String
scalar
The text content of the note. Optional.
UpdateContactStoreNoteInput.customFields
● [CustomFieldInput!]
list input
The custom fields to create or update for the note. Optional.
UpdateContactStoreNoteInput.noteId
● ID!
non-null scalar
The identifier of the note.
UpdateContactStoreNoteInput.noteTypeId
● ID
scalar
The identifier of the note type of the note. Optional.
Member Of
updateContactStoreNote
mutation