mDelete #
Deletes multiple indexes at once.
Arguments #
MDelete(indexes []string, options types.QueryOptions) ([]string, error)
Arguments | Type | Description |
---|---|---|
indexes | Array | An array of strings containing indexes names. |
options | QueryOptions | Query options |
Options #
Additional query options
Option | Type | Description | Default |
---|---|---|---|
queuable | bool | Make this request queuable or not | true |
Return #
Returns an Array
of strings containing the list of indexes names deleted or an error
Usage #
indexes := []string{"nyc-open-data", "mtp-open-data"}
deleted, err := kuzzle.Index.MDelete(indexes, nil)
if err != nil {
log.Fatal(err)
} else {
fmt.Printf("Successfully deleted %d indexes", len(deleted))
}
Edit this page on Github(opens new window)