searchGroups
FunctionsearchGroups(search: string | ISearchOptions | SearchQueryBuilder): Promise<ISearchResult<IGroup>>Search a portal for groups. See the REST Documentation for more information.
import { searchGroups } from "@esri/arcgis-rest-portal";
searchGroups('water')
.then(response) // response.total => 355Parameters
| Parameter | Type | Notes |
|---|---|---|
search | string | ISearchOptions | SearchQueryBuilder | A string or RequestOptions object to pass through to the endpoint. |
Returns
Promise<ISearchResult<IGroup>>A Promise that will resolve with the data from the response.