OBJECT

Automation

Automation

link GraphQL Schema definition

  • type Automation {
  • # AutomationStep of the Automation
  • automationSteps: [AutomationStep!]
  • # Number of automations completed
  • completedCount: Int
  • # When the automation was last updated
  • createdAt: ISO8601DateTime!
  • # enabled of the Automation
  • enabled: Boolean
  • # Number of automations errored
  • errorCount: Int
  • # ID of the Automation
  • id: ID!
  • # type of automation
  • isV2: Boolean
  • # name of the Automation
  • name: String!
  • # Eagle only automation permissions
  • permissionLevel: AutomationsPermissionLevelEnum
  • # Possible Automation Steps for the Automation
  • #
  • # Arguments
  • # parentId: Parent id
  • possibleAutomationSteps(parentId: String): [PossibleAutomationStep!]
  • # requires of the Automation
  • requires: [AutomationProvidesEnum!]
  • # Number of automations running
  • runningCount: Int
  • # Grouped triggers of the Automation
  • triggerGroups: [TriggerGroup!]
  • # Trigger Instances of the Automation
  • triggerInstances: [TriggerInstance!]
  • # When the automation was created
  • updatedAt: ISO8601DateTime!
  • # user of the Automation
  • user: User
  • }