Interface HonuaOdataQueryParams

Parameters that translate onto an OData query string.

interface HonuaOdataQueryParams {
    apply?: string;
    count?: boolean;
    deltatoken?: string;
    expand?: readonly string[];
    extra?: Record<string, string | number | boolean>;
    filter?: string;
    orderBy?: readonly string[];
    search?: string;
    select?: readonly string[];
    signal?: AbortSignal;
    skip?: number;
    skiptoken?: string;
    top?: number;
}

Properties

apply?: string

$apply transformation expression.

count?: boolean

OData v4 $count=true — request the matched-row count alongside the page.

deltatoken?: string

$deltatoken change-feed cursor.

expand?: readonly string[]
extra?: Record<string, string | number | boolean>

Free-form passthrough for parameters the adapter does not model directly.

filter?: string
orderBy?: readonly string[]
search?: string

$search full-text search expression.

select?: readonly string[]
signal?: AbortSignal
skip?: number
skiptoken?: string

Server-driven pagination cursor returned in @odata.nextLink.

top?: number