@couchbase/lite-js
    Preparing search index...

    Interface ReplicatorCollectionConfig

    Per-collection Replicator configuration.

    interface ReplicatorCollectionConfig {
        documentIDs?: readonly DocID[];
        pull?: PullConfig;
        push?: PushConfig;
        resetCheckpoint?: boolean;
    }
    Index

    Properties

    documentIDs?: readonly DocID[]

    If set, only these documents will be pushed or pulled.

    pull?: PullConfig

    Configuration for pulling. If not present, replicator will not pull.

    push?: PushConfig

    Configuration for pushing. If not present, replicator will not push.

    resetCheckpoint?: boolean

    If true, the replicator will ignore its current state and compare all document revision IDs with the server.