SDK
SDK Javascript v7.x
2

searchRoles #

Searches security roles, optionally returning only those allowing access to the provided controllers.


Copied to clipboard!
searchRoles([body], [options]);

Property Type Description
body
object
Query including allowed controllers to search for
options
object
Query options

body #

Property Type Description
controllers
array<string>
Role identifiers

options #

Property Type
(default)
Description
queuable
boolean

(true)
If true, queues the request during downtime, until connected to Kuzzle again
from
number

(0)
Offset of the first document to fetch
size
number

(10)
Maximum number of documents to retrieve per page

Resolves #

A SearchResult object containing the retrieved Role objects.

Usage #

Copied to clipboard!
try {
  const results = await kuzzle.security.searchRoles({
    controllers: ['auth']
  });
  console.log(results);
  /*
  RoleSearchResult {
    aggregations: undefined,
    hits:
      [ Role { _id: 'admin', controllers: [Object] },
        Role { _id: 'default', controllers: [Object] },
        Role { _id: 'anonymous', controllers: [Object] } ]
    fetched: 3,
    total: 3 }
   */
  console.log(`Successfully retrieved ${results.total} roles`);
} catch (e) {
  console.error(e);
}