NotificationCondition

(ENUM)

link GraphQL Schema definition

  • enum NotificationCondition {
  • # sends notification only if it is the first time ever the entity was created
  • and_FIRST_CREATE
  • # sends notification only if the entity was re-created
  • and_RE_CREATE
  • # sends notification only if entity was just created or re-created
  • and_CREATE_OR_EDIT
  • # sends notification only if it has never been sent before
  • and_EMAIL_FIRST_SEND
  • # sends notification only if there has been some change to underlying data
  • and_CHANGED
  • # notification is or is not sent corresponding to current system settings
  • and_SYSTEM_DEFAULT
  • # force sending of notification
  • or_ALWAYS
  • # force silent operation - no notification is sent
  • NONE
  • }