Interface OdataProtocolCompiledQueryV1Experimental

Operation-bound OData v4 protocol artifact used by query plans and the executable protocol-module seam.

interface OdataProtocolCompiledQueryV1 {
    compiler: "odata-v4-protocol-query-v1";
    entitySet: string;
    expand?: readonly string[];
    filter?: string;
    operation: ProtocolModuleQueryOperation;
    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