Click or drag to resize

ImportDocumentsOnDuplicate Enumeration

Enum representing possible actions to carry out in case of a unique key constraint violation.

Namespace:  ArangoDBNetStandard.BulkOperationsApi.Models
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public enum ImportDocumentsOnDuplicate
Members
  Member nameValueDescription
Error0 Will not import the current document because of the unique key constraint violation. This is the default setting.
Update1 Will update an existing document in the database with the data specified in the request. Attributes of the existing document that are not present in the request will be preserved.
Replace2 Will replace an existing document in the database with the data specified in the request.
Ignore3 Will not update an existing document and simply ignore the error caused by the unique key constraint violation.
See Also