ListAsync #
Gets the complete list of indexes handled by Kuzzle.
Arguments #
Task<JArray> ListAsync();
Return #
Returns a JArray
containing the list of index names handled by Kuzzle.
Usage #
JArray indexes = await kuzzle.Index.ListAsync();
Console.WriteLine($"Kuzzle contains {indexes.Count} indexes");
Edit this page on Github(opens new window)