IIndexResponseUnique Property |
Indicates whether the index is a unique or non-unique index.
Sparse indexes do not index documents for which any of the index attributes
is either not set or is null.
Namespace:
ArangoDBNetStandard.IndexApi.Models
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax bool? Unique { get; set; }
Property Unique As Boolean?
Get
Set
property Nullable<bool> Unique {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
abstract Unique : Nullable<bool> with get, set
Property Value
Type:
NullableBooleanRemarks
The following index types do not support uniqueness,
and using the unique attribute with these types may lead to an error:
Geo,
FullText.
Unique indexes on non-shard keys are not supported in a cluster.
See Also