How to remove it? There is no property to set?
How to do programically remove an email_notifications in YML from a form?
Managed to answer my own question, thanks Patrick for the quick reply
Need to update the notification and not the form. The notification is attached to the form not the other way around. Hope it helps someone else.
mutation RemoveEmailNotificationFromForm {
admin_email_notification_update(email_notification: {form_configuration_ids: null}, id: "<YourFormID>") {
id
}
}
Are you looking for Trigger conditions?
https://documentation.platformos.com/developer-guide/notifications/notifications#configuration
-
Rich - DataOTI don't want any notifications on a form at all, I want to programmically remove them (if they were added previously). Manually I would just remove "email_notifications" from the YML in the form... how is this done via mutation?
Mar 01 2021 at 02:32