Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface ODataQueryOptions

    Query options for entity set retrieval.

    const opts: ODataQueryOptions = {
    filter: "Price gt 10",
    select: "Name,Price",
    top: 20,
    skip: 0,
    };
    interface ODataQueryOptions {
        csrfToken?: string;
        expand?: string;
        filter?: string;
        headers?: Readonly<Record<string, string>>;
        orderby?: string;
        select?: string;
        skip?: number;
        timeout?: number;
        top?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    csrfToken?: string

    CSRF token for write operations (POST/PATCH/DELETE).

    expand?: string

    OData $expand expression (comma-separated navigation properties).

    filter?: string

    OData $filter expression.

    headers?: Readonly<Record<string, string>>

    Additional custom headers to include in the request.

    orderby?: string

    OData $orderby expression.

    select?: string

    OData $select expression (comma-separated property names).

    skip?: number

    OData $skip value (number of entities to skip).

    timeout?: number

    Timeout in ms for the HTTP request.

    top?: number

    OData $top value (maximum number of entities to return).