Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Type Alias OrderBy

    Represent an ORDER BY clause containing one or more sort specifications.

    type OrderBy = {
        expressions: Ordered[];
        siblings?: boolean;
    }
    Index

    Properties

    expressions: Ordered[]

    The sort specifications, each with direction and null ordering.

    siblings?: boolean

    Whether this is ORDER SIBLINGS BY (Oracle hierarchical queries)