Interface BatchQueryItem

A single query item in a batch.

interface BatchQueryItem {
    label?: string;
    request: QueryFeaturesRequest | MapLayerQueryRequest;
    type?: "feature" | "map-layer";
}

Properties

Properties

label?: string

Optional label to identify this query in the results.

The query request payload.

type?: "feature" | "map-layer"

When "map-layer", calls client.queryMapLayer(); default is "feature".