Click or drag to resize

IIndexResponse Interface

Represents information about an index returned in responses.

Namespace:  ArangoDBNetStandard.IndexApi.Models
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public interface IIndexResponse

The IIndexResponse type exposes the following members.

Properties
  NameDescription
Public propertyBestIndexedLevel
For more information, see https://www.arangodb.com/docs/stable/http/indexes-geo.html
Public propertyDeduplicate
Supported by array indexes of type Persistent. Indicates whether inserting duplicate index values from the same document into a unique array index will lead to a unique constraint error or not.
Public propertyEstimates
Supported by indexes of type Persistent. Indicates whether index selectivity estimates are maintained for the index.
Public propertyExpireAfter
Supported by indexes of type TTL. The time interval (in seconds) from the point in time stored in the Fields property after which the documents count as expired. Can be set to 0 to let documents expire as soon as the server time passes the point in time stored in the document attribute, or to a higher number to delay the expiration.
Public propertyFields
The attributes that are part of the indexed. Depending on the index type, a single attribute or multiple attributes can be indexed.
Public propertyGeoJson
Supported by indexes of type Geo. If a geo-spatial index on a location is constructed and geoJson is true, then the order within the array is longitude followed by latitude.
Public propertyId
Id of the index
Public propertyIsNewlyCreated
Indicates a newly created index.
Public propertyMaxNumCoverCells
For more information, see https://www.arangodb.com/docs/stable/http/indexes-geo.html
Public propertyMinLength
Supported by indexes of type FullText. Minimum character length of words to index.
Public propertyName
Name of the index
Public propertySelectivityEstimate
The index selectivity estimate value for the index if Estimates is set to True.
Public propertySparse
Applies to indexes of type Persistent. Indicates whether the index is a sparse index or not. Sparse indexes do not index documents for which any of the index attributes is either not set or is null.
Public propertyType
Type of index. See IndexTypes.
Public propertyUnique
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.
Public propertyWorstIndexedLevel
For more information, see https://www.arangodb.com/docs/stable/http/indexes-geo.html
Top
See Also