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

    Type Alias WhereNodeInternal

    WhereNode: Readonly<
        {
            cloneWithOperation(
                whereNode: WhereNode,
                operator: "And" | "Or",
                operation: OperationNode,
            ): WhereNode;
            create(filter: OperationNode): WhereNode;
            is(node: OperationNode): node is WhereNode;
        },
    >