Index Field
data class IndexField(val arrayConfig: String? = null, val fieldPath: String? = null, val order: String? = null, val vectorConfig: IndexFieldVectorConfig? = null)
Constructors
Link copied to clipboard
constructor(arrayConfig: String? = null, fieldPath: String? = null, order: String? = null, vectorConfig: IndexFieldVectorConfig? = null)
Properties
Link copied to clipboard
Indicates that this field supports operations on arrayValues. Only one of order
, arrayConfig
, and vectorConfig
can be specified. Possible values are: CONTAINS
.
Link copied to clipboard
Indicates that this field supports vector search operations. Only one of order
, arrayConfig
, and vectorConfig
can be specified. Vector Fields should come after the field path __name__
. Structure is documented below.