min
min
I want to do something like this https://stackoverflow.com/questions/56041893/java-how-to-share-field-and-method-between-classes And those Delegate pattern is not work well, because the class is used by many framework/lib (ex: Spring data, jackson) So, I...
### Enhancement Description As title ### Current Behaviour No dark theme , only light theme ### Wanted Behaviour Dark theme ### Possible Workarounds Use dark mode chrome extension
**Describe the bug** In swagger, it shows these in default ````json "locale": { "language": "string", "displayName": "string", "country": "string", "variant": "string", "script": "string", "unicodeLocaleAttributes": [ "string" ], "unicodeLocaleKeys": [ "string"...
I have some node ````java @Data @Node public abstract class BaseNode { @Id @GeneratedValue private UUID id; } @EqualsAndHashCode(callSuper = true) @Node @Data public class Child extends BaseNode{ } @EqualsAndHashCode(callSuper...
As title Current `CrudRepository` delete only delete node and relation, but not target node. Is it possible to support cascades delete too?
I have a base class for common field ````java public abstract class BaseNode { @Id @GeneratedValue private UUID id; } ```` My real node ````java @Node public class MyNode extends...
As title, it's work well with spring data neo4j alone, but fail with spring data jpa. ```` java.lang.NullPointerException: Cannot invoke "org.springframework.transaction.support.TransactionTemplate.execute(org.springframework.transaction.support.TransactionCallback)" because "this.this$0.transactionTemplate" is null at org.springframework.data.neo4j.core.Neo4jTemplate$DefaultExecutableQuery.getResults(Neo4jTemplate.java:1262) ~[spring-data-neo4j-7.3.2.jar:7.3.2] at org.springframework.data.neo4j.repository.query.Neo4jQueryExecution$DefaultQueryExecution.execute(Neo4jQueryExecution.java:51)...
### Description As title. It's about 1 year since last commit. And no response to recent issue. For ex: https://github.com/surrealdb/surrealdb.java/issues/86 ### Is there an existing issue for this? - [X]...
````java @Schema(oneOf = {Child1.class, Child2.class}) private Parent obj; ```` The result is something like this ````json "MyPojo": { "oneOf": [ { "$ref": "#/components/schemas/Child1" }, { "$ref": "#/components/schemas/Child2" }, { "$ref":...
**Is your feature request related to a problem? Please describe.** I got the oneOf property is not work issue, but no fix yet. https://github.com/swagger-api/swagger-core/issues/4732 In the meantime, I am working...