Represents the result object returned from a portal query.
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
String | more details The name of the class. | more details | Accessor | |
PortalQueryParams | more details The query parameters for the next set of results. | more details | PortalQueryResult | |
PortalQueryParams | more details The query parameters for the first set of results. | more details | PortalQueryResult | |
Object[] | more details An array of result item objects. | more details | PortalQueryResult | |
Number | more details The total number of results. | more details | PortalQueryResult |
Property Details
-
Since: ArcGIS API for JavaScript 4.7
-
The name of the class. The declared class name is formatted as
esri.folder.className
.
-
nextQueryParams PortalQueryParams
-
The query parameters for the next set of results.
-
queryParams PortalQueryParams
-
The query parameters for the first set of results.
-
An array of result item objects.
-
total Number
-
The total number of results.
Method Overview
Name | Return Type | Summary | Class | |
---|---|---|---|---|
more details Adds one or more handles which are to be tied to the lifecycle of the object. | more details | Accessor |
Method Details
-
own(handleOrHandles)inheritedSince: ArcGIS API for JavaScript 4.24
-
Adds one or more handles which are to be tied to the lifecycle of the object. The handles will be removed when the object is destroyed.
// Manually manage handles const handle = reactiveUtils.whenOnce(() => !view.updating) .then(() => { wkidSelect.disabled = false; }); handle.remove(); // Assign a handle using own() this.own(reactiveUtils.whenOnce(() => !view.updating) .then(() => { wkidSelect.disabled = false; }));
Parameter:handleOrHandles WatchHandle|WatchHandle[]Handles marked for removal once the object is destroyed.