@ibm-cloud/cloudant - v0.12.3
    Preparing search index...

    Interface PostViewQueriesAsStreamParams

    Parameters for the postViewQueriesAsStream operation.

    interface PostViewQueriesAsStreamParams {
        db: string;
        ddoc: string;
        headers?: OutgoingHttpHeaders;
        queries: CloudantV1.ViewQuery[];
        signal?: GenericAbortSignal;
        view: string;
    }

    Hierarchy

    • DefaultParams
      • PostViewQueriesAsStreamParams
    Index

    Properties

    db: string

    Path parameter to specify the database name.

    ddoc: string

    Path parameter to specify the design document name. The design document name is the design document ID excluding the _design/ prefix.

    headers?: OutgoingHttpHeaders

    An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular view request.

    signal?: GenericAbortSignal
    view: string

    Path parameter to specify the map reduce view function name.