exists #
Checks if a collection exists.
Arguments #
public CompletableFuture<Boolean> exists(
final String index,
final String collection)
throws NotConnectedException, InternalException
Arguments | Type | Description |
---|---|---|
index | String | Index |
collection | String | Collection |
Return #
Returns a boolean.
Usage #
Boolean result = kuzzle
.getCollectionController()
.exists("nyc-open-data", "yellow-taxi")
.get();
Edit this page on Github(opens new window)