Interface GeoServicesCompiledQueryV1Experimental

interface GeoServicesCompiledQueryV1 {
    compiler: "geoservices-rest-query-v1";
    geometry?: {
        [key: string]: JsonValue;
    };
    geometryType?: EsriGeometryType;
    groupByFieldsForStatistics?: string;
    layerId: number;
    orderByFields?: string;
    outFields?: readonly string[];
    outSr?: string | number;
    outStatistics?: readonly {
        onStatisticField: string;
        outStatisticFieldName: string;
        statisticType: string;
    }[];
    resultOffset?: number;
    resultRecordCount?: number;
    returnGeometry?: boolean;
    serviceId: string;
    spatialRel?: EsriSpatialRel;
    where?: string;
}

Properties

compiler
geometry?: {
    [key: string]: JsonValue;
}
geometryType?: EsriGeometryType
groupByFieldsForStatistics?: string
layerId: number
orderByFields?: string
outFields?: readonly string[]
outSr?: string | number
outStatistics?: readonly {
    onStatisticField: string;
    outStatisticFieldName: string;
    statisticType: string;
}[]
resultOffset?: number
resultRecordCount?: number
returnGeometry?: boolean
serviceId: string
spatialRel?: EsriSpatialRel
where?: string