Schema for an all documents query operation.

interface AllDocsQuery {
    att_encoding_info?: boolean;
    attachments?: boolean;
    conflicts?: boolean;
    descending?: boolean;
    end_key?: string;
    include_docs?: boolean;
    inclusive_end?: boolean;
    key?: string;
    keys?: string[];
    limit?: number;
    skip?: number;
    start_key?: string;
    update_seq?: boolean;
}

Properties

att_encoding_info?: boolean

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

attachments?: boolean

Parameter to specify whether to include attachments bodies in a response.

conflicts?: boolean

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

descending?: boolean

Parameter to specify whether to return the documents in descending by key order.

end_key?: string

Schema for a document ID.

include_docs?: boolean

Parameter to specify whether to include the full content of the documents in the response.

inclusive_end?: boolean

Parameter to specify whether the specified end key should be included in the result.

key?: string

Schema for a document ID.

keys?: string[]

Schema for a list of document IDs.

limit?: number

Parameter to specify the number of returned documents to limit the result to.

skip?: number

Parameter to specify the number of records before starting to return the results.

start_key?: string

Schema for a document ID.

update_seq?: boolean

Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.

Generated using TypeDoc