React Native Firebase
    Preparing search index...

    PipelineSource defines the input for a pipeline. Call exactly one of collection, collectionGroup, database, documents, or createFrom.

    interface PipelineSource<TPipeline extends Pipeline = Pipeline> {
        collection(path: string): TPipeline;
        collection(collectionRef: CollectionReference): TPipeline;
        collection(options: PipelineCollectionSourceOptions): TPipeline;
        collectionGroup(collectionId: string): TPipeline;
        collectionGroup(options: PipelineCollectionGroupSourceOptions): TPipeline;
        createFrom(query: Query): TPipeline;
        database(options?: PipelineDatabaseSourceOptions): TPipeline;
        documents(
            docs: (string | DocumentReference<DocumentData, DocumentData>)[],
        ): TPipeline;
        documents(options: PipelineDocumentsSourceOptions): TPipeline;
    }

    Type Parameters

    Index

    Methods