Fires2REST - v0.3.0
    Preparing search index...

    Interface RunQueryResponseItem

    A single result from a runQuery call

    interface RunQueryResponseItem {
        document?: FirestoreDocument;
        done?: boolean;
        readTime?: string;
        skippedResults?: number;
    }
    Index

    Properties

    A query result (if present)

    done?: boolean

    If present, Firestore has completely finished the request

    readTime?: string

    The time at which the document was read

    skippedResults?: number

    The number of documents skipped (for offset)