Skip to content

FuncCallExpr🔗

Represents a function call expression.

Definition🔗

class FuncCallExpr:
    """
    Represents a function call expression.
    """

    type_val: typing.Literal["funcCallExpr"]
    # Name of the function.
    function: str
    # Arguments.
    args: list[promql.Expr]

See also🔗