Cuttlefish SDK Reference - v0.1.0
    Preparing search index...

    Type Alias AggregateFunctionNodeInternal

    AggregateFunctionNode: Readonly<
        {
            cloneWithDistinct(
                aggregateFunctionNode: AggregateFunctionNode,
            ): AggregateFunctionNode;
            cloneWithFilter(
                aggregateFunctionNode: AggregateFunctionNode,
                filter: OperationNode,
            ): AggregateFunctionNode;
            cloneWithOrderBy(
                aggregateFunctionNode: AggregateFunctionNode,
                orderItems: readonly OrderByItemNode[],
                withinGroup?: boolean,
            ): AggregateFunctionNode;
            cloneWithOrFilter(
                aggregateFunctionNode: AggregateFunctionNode,
                filter: OperationNode,
            ): AggregateFunctionNode;
            cloneWithOver(
                aggregateFunctionNode: AggregateFunctionNode,
                over?: OverNode,
            ): AggregateFunctionNode;
            create(
                aggregateFunction: string,
                aggregated?: readonly OperationNode[],
            ): AggregateFunctionNode;
            is(node: OperationNode): node is AggregateFunctionNode;
        },
    >