Jonathan MASSUCHETTI

Results 113 comments of Jonathan MASSUCHETTI

Here is the code : Class definition ```java @Data abstract public class BaseManageableEntity { @Id protected String id; @Field("dag_paths") protected List dagPaths = new ArrayList(); abstract public ManageableType getManageableType(); @Data...

I have edited the code in my previous comment to be more complete. Very basic stuff for data input: ```java var a = new Foo(); a.setId("a"); var b = new...

> Where does 'serializer' in toDomainEntity come from? It comes from `cluster.environment().jsonSerializer()`.

I tried to use `CouchbaseTemplateSupport` but for that I needed to upgrade to `4.3.1` and then I met the breaking change exposed in #1315

After moving to `4.3.2-SNAPSHOT` and using to the translation service, this issue is resolved ! Thank you Michael !

> I'm going to keep this open as someone else hit this and I need to update the documentation. Is the documentation open to PRs ?

> btw - there is a PR for querydsl at #1330 > I don't seem to be able to add you as a reviewer. Having a sample project would help...

> Otherwise, the id can be generated by any means and then set in the entity before conversion. Of course, we could do the same instead of using `USE_ATTRIBUTES`, it's...

This is super weird to not have a way to make sure things are available and ready to be queried. What is even weirder is that even with mutation token,...