List Automated Formula Operations

Before You Begin

🔗 Use the GraphQL Playground to execute the queries in this guide.

Prerequisites

  1. Authentication: Use a Service Account token.
  2. Permissions: Ensure your token has permissions to view automations.

Query: List Automated Formula Operations

Use the automatedFormulaOperations query to list all available formula operations for automated formula type automations.

{
  automatedFormulaOperations
}

Key Fields Explained

  • automatedFormulaOperations: An array of available formula operation names (e.g., SUM, AVERAGE, COUNT).

Example Response

{
  "data": {
    "automatedFormulaOperations": [
      "SUBTRACT",
      "MULTIPLY",
      "DIVIDE",
      "SUM",
      "AVERAGE",
      "MAX",
      "MIN",
      "COUNT",
      "IF_NULL",
      "ROUND"
    ]
  }
}