Schema for submitting documents for bulk modifications.

interface BulkDocs {
    docs: Document[];
    new_edits?: boolean;
}

Properties

Properties

docs: Document[]

Array of documents.

new_edits?: boolean

If false, prevents the database from assigning them new revision IDs. Default is true.

Generated using TypeDoc