Interface OdataCompiledQueryV1Experimental

Inspectable OData v4 entity-set query produced without I/O.

interface OdataCompiledQueryV1 {
    compiler: "odata-v4-query-v1";
    entitySet: string;
    expand?: readonly string[];
    filter?: string;
    orderBy?: readonly string[];
    select?: readonly string[];
    skip?: number;
    top?: number;
}

Properties

compiler
entitySet: string
expand?: readonly string[]
filter?: string
orderBy?: readonly string[]
select?: readonly string[]
skip?: number
top?: number