UNPKG

@esri/arcgis-rest-portal

Version:

ArcGIS Online and Enterprise content and user helpers for @esri/arcgis-rest-request

20 lines 738 B
/* Copyright (c) 2018-2019 Environmental Systems Research Institute, Inc. * Apache-2.0 */ import { genericSearch } from "../util/generic-search.js"; /** * Search a portal for items. See the [REST Documentation](https://developers.arcgis.com/rest/users-groups-and-items/search.htm) for more information. * * ```js * import { searchItems } from "@esri/arcgis-rest-portal"; * * searchItems('water') * .then(response) // response.total => 355 * ``` * * @param search - A string or RequestOptions object to pass through to the endpoint. * @returns A Promise that will resolve with the data from the response. */ export function searchItems(search) { return genericSearch(search, "item"); } //# sourceMappingURL=search.js.map