createIndexes

fun createIndexes(indexes: List<IndexModel>, options: CreateIndexOptions = CreateIndexOptions()): Flow<String>

Create multiple indexes.

Return

the list of index names

Parameters

indexes

the list of indexes

options

options to use when creating indexes

See also


fun createIndexes(clientSession: ClientSession, indexes: List<IndexModel>, options: CreateIndexOptions = CreateIndexOptions()): Flow<String>

Create multiple indexes.

Return

the list of index names

Parameters

clientSession

the client session with which to associate this operation

indexes

the list of indexes

options

: options to use when creating indexes

See also