@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias ExpressionEvaluationRequest

    type ExpressionEvaluationRequest = {
        expression: string;
        scopeKey?: ScopeKey;
        tenantId?: string;
        variables?: { [key: string]: unknown } | null;
    }
    Index

    Properties

    expression: string

    The expression to evaluate (e.g., "=x + y")

    scopeKey?: ScopeKey

    Key of the process instance or element instance whose variables should be made visible to the expression. Use a process instance key to evaluate against the process instance scope, or an element instance key to evaluate against that element instance scope. If omitted, the expression is evaluated unscoped, using only cluster variables and request-body variables.

    tenantId?: string

    Required when the expression references tenant-scoped cluster variables

    variables?: { [key: string]: unknown } | null

    Optional variables for expression evaluation. These variables are only used for the current evaluation and do not persist beyond it.