30. Mutation: Delete multiple "Notes"
Delete the selected multiple "Notes".
The "Note" created by the user can be deleted.
IMPORTANT: Max amount of "Notes" to delete is 25.
IMPORTANT: Only keys (uuid and fieldUuid) are available in the response.
mutation DeleteNotes {
deleteNotes(input:{
notes: [{
uuid: "<placeholder_for_note_uuid>",
fieldUuid: "<placeholder_for_field_uuid>"
}, {
uuid: "<placeholder_for_note_uuid>",
fieldUuid: "<placeholder_for_field_uuid>"
}, {
uuid: "<placeholder_for_note_uuid>",
fieldUuid: "<placeholder_for_field_uuid>"
}]
}) {
uuid
fieldUuid
}
}
Last updated
Was this helpful?