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

I just found this library today. Sorry, if I there is a better place to post this question I run this code ``` Account account = Account.builderAccount() .accountnumber("987654329") .name("test company")...

Hey David, **Quick question - is this somehow achievable using the generated client:** So desired HTTP request form: ``` {serviceUri}/odata/Constructions(1296481).... ``` OData generated client by your generator produces: ``` {serviceUri}/odata/Constructions/1296481/.......

question

I am using Graph client SDK (com.microsoft.graph.microsoft-graph:6.2.1) to read all messages in a channel. Here is my code. ChatMessageCollectionResponse result = getGraphClient().teams().byTeamId(teamsId).channels() .byChannelId(channelId).messages().get(rc -> { rc.queryParameters.top= 50; rc.queryParameters.skip= 0; });...

question

Bumps `olingo.version` from 4.10.0 to 5.0.0. Updates `org.apache.olingo:odata-server-api` from 4.10.0 to 5.0.0 Updates `org.apache.olingo:odata-server-core` from 4.10.0 to 5.0.0 Updates `org.apache.olingo:odata-commons-api` from 4.10.0 to 5.0.0 Updates `org.apache.olingo:odata-commons-core` from 4.10.0 to 5.0.0...

dependencies

So I've just learned that the remote OData service that I'm trying to connect to requires that all requests (even singletons) be sent as batch requests. Unless I'm mistaken, the...

enhancement

Hi David, Found some posts on githud to do following for creating uploading session to upload an item to a drive using graph client. But i dont see the **itemWithPath()**...

enhancement

Hello, i'm trying to generate Java classes from a metadata xml following the logic of the **odata-client-microsoft-dynamics** client but the process fails with the following error: `manyToManyRelationships() in microsoft.dynamics.crm.entity.set.EntityDefinitions cannot...

question

This looks like a great generator, I particularly like the type safety. But unfortunately the server I need to connect to is OData v2. How hard would it be to...

question

As mentioned in #103, would be nice to be able to post lists rather than just single items: ```java client.companies().purchaseInvoices("123").purchaseInvoiceLines().post(list); ``` In fact it seems that some paths in Microsoft...

enhancement

Hello David, I have been playing around with using your library to generate the code to interface with Dynamics 365 Business Central api. This is looking very promising so far...

enhancement
question