Interface HonuaTypedQueryResponse<T>

A query response with typed feature attributes. The generic parameter T flows from HonuaFeatureLayer<T> to provide typed attribute access.

interface HonuaTypedQueryResponse<T> {
    exceededTransferLimit?: boolean;
    features?: HonuaTypedFeature<T>[];
    fields?: HonuaFieldInfo[];
    geometryType?: EsriGeometryType;
    objectIdFieldName?: string;
    spatialReference?: HonuaSpatialReference;
}

Type Parameters

  • T = Record<string, unknown>

Properties

exceededTransferLimit?: boolean
features?: HonuaTypedFeature<T>[]
fields?: HonuaFieldInfo[]
geometryType?: EsriGeometryType
objectIdFieldName?: string
spatialReference?: HonuaSpatialReference