Interface UnfilteredResponseWithoutQuery

When using filterResponse: false, but you do not wish to receive back the query from the content lake API.

interface UnfilteredResponseWithoutQuery {
    body?: any;
    cache?: undefined;
    cacheMode?: "noStale";
    filterResponse: false;
    headers?: Record<string, string>;
    lastLiveEventId?: null | string | string[];
    method?: string;
    next?: undefined;
    perspective?: ClientPerspective;
    query?: any;
    resultSourceMap?: boolean | "withKeyArraySelector";
    returnQuery: false;
    signal?: AbortSignal;
    stega?: boolean | StegaConfig;
    tag?: string;
    timeout?: number;
    token?: string;
    useCdn?: boolean;
}

Hierarchy (View Summary)

Properties

body?: any
cache?: undefined
cacheMode?: "noStale"

When set to noStale, APICDN will not return a cached response if the content is stale. Tradeoff between latency and freshness of content.

Only to be used with live content queries and when useCdn is true.

filterResponse: false
headers?: Record<string, string>
lastLiveEventId?: null | string | string[]
method?: string
next?: undefined
perspective?: ClientPerspective
query?: any
resultSourceMap?: boolean | "withKeyArraySelector"
returnQuery: false
signal?: AbortSignal
stega?: boolean | StegaConfig
tag?: string
timeout?: number
token?: string
useCdn?: boolean