ArrayIndexConfiguration
actual class ArrayIndexConfiguration(path: String, expressions: List<String>?) : IndexConfiguration(source)
expect class ArrayIndexConfiguration(path: String, expressions: List<String>? = null) : IndexConfiguration(source)
Configuration for indexing property values within nested arrays in documents, intended for use with the UNNEST query.
actual class ArrayIndexConfiguration(path: String, expressions: List<String>?) : IndexConfiguration(source)
actual class ArrayIndexConfiguration(val path: String, val expressions: List<String>?) : IndexConfiguration(source)
Constructors
Link copied to clipboard
Initializes the configuration with paths to the nested array with no expressions constraining the values within the arrays to be indexed.
Initializes the configuration with paths to the nested array and the expressions for the values within the arrays to be indexed. A null expression will cause a runtime error.
Initializes the configuration with paths to the nested array and the expressions for the values within the arrays to be indexed. A null expression will cause a runtime error.