The Data Gateway supports OData v4.016).
GET /odata/demo
Lists all available Entity Sets (tables/views).
GET /odata/demo/$metadata
Returns the schema in EDMX7) format.
GET /odata/demo/Customers GET /odata/demo/Customers?$top=10 GET /odata/demo/Customers?$filter=Country eq 'Germany'
| Option | Description | Example |
|---|---|---|
| $filter | Filter results | $filter=Price gt 100 |
| $select | Select columns | $select=Name,Price |
| $orderby | Sort results | $orderby=Name desc |
| $top | Limit count | $top=10 |
| $skip | Skip entries | $skip=20 |
| $count | Count results | $count=true |
| $expand | Load relationships | $expand=Orders |