Since version: 1.32
The Experience Builder Data profile is used to create a FeatureSet as a data source in an ArcGIS Experience Builder app.
Context
The following products implement this profile:
Spatial reference
The spatial reference of this execution context is always Web Mercator (wkid: 3857).
Time zone
The Experience Builder time zone determines the execution context's default time zone.
Profile variables
This profile does not provide any profile variables.
Function bundles
Core | Geometry | Data Access | Portal Access
Return types
Example
var p = Portal("https://arcgis.com");
// world cities
var features = FeatureSetByPortalItem(p, "d7cd2181ca854523a90b0e1147604a4d", 0, [
"CITY_NAME", "POP", "POP_RANK", "POP_CLASS"
], true);
return Filter(features, "POP > 1000000");