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

    Interface GetDocumentAsMixedParams

    Parameters for the getDocumentAsMixed operation.

    interface GetDocumentAsMixedParams {
        attachments?: boolean;
        attEncodingInfo?: boolean;
        conflicts?: boolean;
        db: string;
        deletedConflicts?: boolean;
        docId: string;
        headers?: OutgoingHttpHeaders;
        ifNoneMatch?: string;
        latest?: boolean;
        localSeq?: boolean;
        meta?: boolean;
        rev?: string;
        revs?: boolean;
        revsInfo?: boolean;
        signal?: GenericAbortSignal;
    }

    Hierarchy

    • DefaultParams
      • GetDocumentAsMixedParams
    Index

    Properties

    attachments?: boolean

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

    attEncodingInfo?: boolean

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

    conflicts?: boolean

    Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when include_docs is true.

    db: string

    Path parameter to specify the database name.

    deletedConflicts?: boolean

    Query parameter to specify whether to include a list of deleted conflicted revisions in the _deleted_conflicts property of the returned document.

    docId: string

    Path parameter to specify the document ID.

    headers?: OutgoingHttpHeaders
    ifNoneMatch?: string

    Header parameter for a conditional HTTP request not matching an ETag.

    latest?: boolean

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

    localSeq?: boolean

    Query parameter to specify whether to include the last update sequence for the document.

    meta?: boolean

    Query parameter to specify whether to include document meta information. Acts the same as specifying all of the conflicts, deleted_conflicts and open_revs query parameters.

    rev?: string

    Query parameter to specify a document revision.

    revs?: boolean

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

    revsInfo?: boolean

    Query parameter to specify whether to includes detailed information for all known document revisions.

    signal?: GenericAbortSignal