React Native Firebase
    Preparing search index...

    Interface Query<AppModelType, DbModelType>

    interface Query<
        AppModelType = DocumentData,
        DbModelType extends DocumentData = DocumentData,
    > {
        converter: FirestoreDataConverter<AppModelType, DbModelType> | null;
        firestore: Firestore;
        type: "query" | "collection";
        withConverter(converter: null): Query<DocumentData, DocumentData>;
        withConverter<
            NewAppModelType,
            NewDbModelType extends DocumentData = DocumentData,
        >(
            converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>,
        ): Query<NewAppModelType, NewDbModelType>;
    }

    Type Parameters

    Implemented by

    Index

    Methods

    Properties

    firestore: Firestore
    type: "query" | "collection"