@jiway/firestorm-core - v1.1.1
    Preparing search index...

    Interface IQueryBuildBlock

    Describes the minimal requirements for a query block

    interface IQueryBuildBlock {
        next: IQueryBuildBlock | null;
        previous: IQueryBuildBlock | null;
        toConstraints(): QueryConstraint[];
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    next: IQueryBuildBlock | null

    A reference to the next query block or null if this block is the last

    previous: IQueryBuildBlock | null

    A reference to the previous query block if this block is the first

    Methods

    • Converts the full chain to a firebase set of query constraints

      Returns QueryConstraint[]

      Firebase query constraints equivalent to this query