SDK
SDK Dart v2.x
2

searchRoles #

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


Copied to clipboard!
Future<RoleSearchResult> searchRoles(
      {Map<String, dynamic> query, int from, int size})

Property Type Description
query
Map<String, dynamic>
Query including allowed controllers to search for
from
int

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

(10)
Maximum number of documents to retrieve per page

query #

Property Type Description
controllers List<String> Role identifiers

Return #

A RoleSearchResult object containing the retrieved Role objects.

Usage #

Copied to clipboard!
final result = await kuzzle.security.searchRoles(query:{
  'controllers': ['auth']
});
/*
RoleSearchResult {
  aggregations: undefined,
  hits:
    [ Role { _id: 'admin', controllers: [Object] },
      Role { _id: 'default', controllers: [Object] },
      Role { _id: 'anonymous', controllers: [Object] } ]
  fetched: 3,
  total: 3 }
*/