odata-client icon indicating copy to clipboard operation
odata-client copied to clipboard

Java client generator for a service described by OData CSDL 4.0 metadata. Includes Microsoft Graph clients (v1.0 and Beta), Graph Explorer client, Analytics for DevOps, Dynamics CRM clients

Results 11 odata-client issues
Sort by recently updated
recently updated
newest added

Instead of calling ```java Optional name = client.me().select("displayName").get().getDisplayName() ``` we should be able to call ```java Optional name = client.me().displayName().get(); ``` Mentioned first in #57. The specification for this is...

enhancement