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

    Type Alias OperationNode

    OperationNode:
        | KyselyOperationNode
        | AggregateWithOptionsNode
        | DistinctAggregateNode
        | AggregateOrderNode
        | AggregateFilterNode
        | AggregateWithinGroupNode
        | WindowFunctionNode
        | LateralFunctionNode
        | RowsFromNode
        | OrdinalityNode
        | LateralJoinNode
        | ColumnAliasNode
        | NullifNode

    Cuttlefish AST - extends Kysely's OperationNode with custom metadata

    This is a union of Kysely's base OperationNode and all our extensions. A single node can satisfy multiple extension types at runtime via intersection (e.g., both aggregate and aggregateFilter).