Parameters for the postBulkGetAsMixed operation.

interface PostBulkGetAsMixedParams {
    attEncodingInfo?: boolean;
    attachments?: boolean;
    db: string;
    docs: BulkGetQueryDocument[];
    headers?: OutgoingHttpHeaders;
    latest?: boolean;
    revs?: boolean;
}

Properties

attEncodingInfo?: boolean

Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.

attachments?: boolean

Query parameter to specify whether to include attachments bodies in a response.

db: string

Path parameter to specify the database name.

List of document items to get in bulk.

headers?: OutgoingHttpHeaders
latest?: boolean

Query parameter to specify whether to force retrieving latest leaf revision, no matter what rev was requested.

revs?: boolean

Query parameter to specify whether to include a list of all known document revisions.

Generated using TypeDoc