Fires2REST - v0.3.0
    Preparing search index...

    Interface StructuredQuery

    A structured query

    interface StructuredQuery {
        endAt?: Cursor;
        from?: CollectionSelector[];
        limit?: number;
        offset?: number;
        orderBy?: Order[];
        select?: Projection;
        startAt?: Cursor;
        where?: Filter;
    }
    Index

    Properties

    endAt?: Cursor

    An end point for the query results

    The collections to query

    limit?: number

    The maximum number of results to return

    offset?: number

    The number of documents to skip

    orderBy?: Order[]

    The order to apply to the query results

    select?: Projection

    The projection to return

    startAt?: Cursor

    A starting point for the query results

    where?: Filter

    The filter to apply