@maschinenlesbar.org/regionalatlas-cli
    Preparing search index...

    Interface ArcGisQueryResponse

    The raw ArcGIS /query response envelope. On a logical failure the server still answers HTTP 200 but sets error (checked by the client).

    interface ArcGisQueryResponse {
        error?: { code?: number; details?: string[]; message?: string };
        exceededTransferLimit?: boolean;
        features?: RawFeature[];
        fields?: FieldInfo[];
        geometryType?: string;
        objectIdFieldName?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    error?: { code?: number; details?: string[]; message?: string }
    exceededTransferLimit?: boolean
    features?: RawFeature[]
    fields?: FieldInfo[]
    geometryType?: string
    objectIdFieldName?: string