Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Latest commit

 

History

History
43 lines (28 loc) · 843 Bytes

File metadata and controls

43 lines (28 loc) · 843 Bytes
code type title description
true
page
listIndexes
Kuzzle:listIndexes

listIndexes

Returns the list of indexes stored in Kuzzle.


listIndexes([options], callback)

Arguments Type Description
options JSON object Optional parameters
callback function Callback handling the response

Options

Option Type Description Default
queuable boolean Make this request queuable or not true

Callback Response

Returns an array of index names.

Usage

<<< ./snippets/list-indexes-1.java

Callback response:

["index", "another index", "..."]