Jérémie Bresson

Results 261 comments of Jérémie Bresson

I am sorry but I am not sure to understand how this question is related to this project (which is a java client for the REST api provided by GitLab)....

I need to figure out your change and understand it. I am surprised by the change of the tests and the dates. I understand the GitLab is not consistent but...

Can you please share the java method you are using and the `curl` command that you have used to compare to. Sometimes the java models are not aligned with the...

Very interesting… Any idea what should be the structure of the `commands_changes` JSON attribute? This doesn't seems to be specified anywhere on the page you linked. Same for `summary` this...

With `@JsonbNillable` on `parentId` https://github.com/unblu/gitlab-workitem-graphql-client/blob/b93a9f97e53e2647a0531c33b2dc67be940fd80c/src/main/java/graphql/gitlab/model/WorkItemWidgetHierarchyUpdateInput.java#L26-L27 This is always sending null when the value is not set. --- But I need to be in control and be able to (at JSON...

My solution https://github.com/unblu/gitlab-workitem-graphql-client/commit/6c578ba27d0ab3f98a139668c34b7b18c3eb6d87 with `@JsonbTypeSerializer` and `@JsonbTypeDeserializer` that is not working in the typesafe client as discussed in https://github.com/smallrye/smallrye-graphql/issues/2257#issuecomment-2607181244

With https://github.com/unblu/gitlab-workitem-graphql-client/commit/96673d87850c148ef174fbf4c5d163db745ae3ea I am now trying a different approach: Have `WorkItemWidgetHierarchyUpdateInput` as interface with 2 classes implementing it: * WorkItemWidgetHierarchyUpdateInputWithParent * WorkItemWidgetHierarchyUpdateInputWithChildren At the end since the server do not...

I have updated my [`WorkItemScript`](https://github.com/jmini/gitlab-experiments/blob/82cbb9dd735649054d2c33f8316fcbb85c16e559/gitlab4j-test/WorkItemScript.java) to use the approach discussed https://github.com/smallrye/smallrye-graphql/issues/2257#issuecomment-2607808479 Having the `WorkItemWidgetHierarchyUpdateInput` as an interface seems to work for the graphql-typesafe-client engine.

@akerekes any inputs on how the test `InvokerTest#.classpathToUrls()` can be extended, because I can not do assertions on the log-entries, right?