Please enable JavaScript.
Coggle requires JavaScript to display documents.
Odata - Coggle Diagram
Odata
- Requesting Entity Collections
-
-
- Get a single entity
from an entity set
-
-
- Navigate to related entities
-
-
- Raw val of a
primitive property
-
-
-
- Filter on enumeration properties
ServiceURL/People?$filter=Gender eq Microsoft.OData.SampleService.Models.TripPin.PersonGender'Female'
- Filter on nested structures
-
- Filter using logic operators
ServiceURL/People?$filter=not(contains(FirstName,'Q')) and (AddressInfo/any(ai:ai/City/Region eq 'WA') or AddressInfo/any(ai:ai/City/Region eq 'ID'))
- Filter using any/all operators
ServiceURL/People?$filter=Emails/any(e: endswith(e, 'contoso.com'))
- Filter using built-in functions
ServiceURL/People('russellwhyte')/Trips(0)/PlanItems/Microsoft.OData.SampleService.Models.TripPin.Flight
Sorting
ServiceURL/People?$orderby=length(FirstName) desc,UserName