Andreas Berger
Andreas Berger
Given ```java @Data @Setter(AccessLevel.PRIVATE) @NoArgsConstructor(access = AccessLevel.PROTECTED) @EqualsAndHashCode(onlyExplicitlyIncluded = true) @SuperBuilder(toBuilder = true) abstract public class BaseNodeEntity { @Id @GeneratedValue(UUIDStringGenerator.class) @EqualsAndHashCode.Include private String nodeId; @Relationship(type = "CHILD_OF", direction = OUTGOING)...
add support for apollo file uploads, resolves #61
I tried to set the currently uesed codestyle into the .editorconfig and applied these settings.
improve query param handling fixes #58
Add Support for apollo multipart file uploads. See also: * https://github.com/jaydenseric/apollo-upload-client * https://www.apollographql.com/docs/apollo-server/data/file-uploads/ * https://www.npmjs.com/package/graphql-upload#class-graphqlupload
Given the schema [the schema](https://github.com/neo4j/graphql/blame/master/packages/graphql/tests/tck/tck-test-files/cypher/advanced-filtering.md#L8-L19) ```graphql type Movie { id: ID title: String actorCount: Int genres: [Genre] @relation(name: "IN_GENRE", direction: OUT) } type Genre { name: String movies: [Movie] @relation(name:...
Given the following schema: ```graphql type Movie { title: String! actors: [Actor!]! @relationship(type: "ACTED_IN", properties: "ActedIn", direction: IN) } type Actor { name: String! movies: [Movie!]! @relationship(type: "ACTED_IN", properties: "ActedIn",...
It seems that the following condition is wrong: https://github.com/neo4j/graphql/blob/296574085021165d57dd9d7adea8da2890444611/packages/graphql/src/translate/create-update-and-params.ts#L157-L168 A check for `refNode.auth` should be used instead.
Given the schema from test [rfc-003](https://github.com/neo4j/graphql/blob/dev/packages/graphql/tests/schema/rfcs/rfc-003.test.ts#L97-L112): ```graphql interface SourceInterface { targets: [Target!]! @relationship(type: "HAS_TARGET", direction: OUT) target1: Target! @relationship(type: "HAS_TARGET", direction: OUT) target2: Target @relationship(type: "HAS_TARGET", direction: OUT) } type...
Code migration completed. open tasks: - [x] adjust documentation - [x] adjust version as soon we have a new release of https://github.com/neo4j-graphql/neo4j-graphql-java/releases