Type alias BulkReadDocumentsOptions

BulkReadDocumentsOptions: {
    allowDirtyRead?: boolean;
    ignoreRevs?: boolean;
}

Options for retrieving multiple documents from a collection.

Type declaration

  • Optional allowDirtyRead?: boolean

    If set to true, the request will explicitly permit ArangoDB to return a potentially dirty or stale result and arangojs will load balance the request without distinguishing between leaders and followers.

  • Optional ignoreRevs?: boolean

    If set to false, the existing document will only be modified if its _rev property matches the same property on the new data.

    Default: true