@maschinenlesbar.org/ladesaeulenregister-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). count is present for a returnCountOnly query.

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

    Indexable

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