adminExists #
Checks that an administrator account exists.
adminExists([options]);| Arguments | Type | Description |
|---|---|---|
options | object | Query options |
Options #
Additional query options
| Property | Type (default) | Description |
|---|---|---|
queuable | boolean ( true) | If true, queues the request during downtime, until connected to Kuzzle again |
Resolve #
Resolves to a boolean set to true if an admin exists and false if it does not.
Usage #
try {
const exists = await kuzzle.server.adminExists();
console.log('Admin exists?', exists);
} catch (error) {
console.error(error.message);
}