Queries an entity set via HTTP GET with OData system query options.
Playwright Page with request API.
OData service root URL.
Name of the entity set to query.
Optional
Query options including $filter, $select, $expand, $orderby, $top, $skip.
Array of entities with HTTP status.
const result = await queryEntities(page, '/sap/opu/odata/sap/SVC/', 'Products', { filter: "Price gt 10", select: "Name,Price", top: 20,}); Copy
const result = await queryEntities(page, '/sap/opu/odata/sap/SVC/', 'Products', { filter: "Price gt 10", select: "Name,Price", top: 20,});
Queries an entity set via HTTP GET with OData system query options.