Andreas Berger

Results 44 comments of Andreas Berger

You can achieve the post processing with the following schema: ```graphql type Order { firstName: String! lastName: String! name: String @cypher(statement:"WITH (this) RETURN this.firstName + ' ' + this.lastName") }...

Just configure spring data neo4j and reuse the neo4j-driver: ```kotlin import org.neo4j.driver.v1.AuthTokens import org.neo4j.driver.v1.Driver import org.neo4j.driver.v1.GraphDatabase import org.neo4j.ogm.config.UsernamePasswordCredentials import org.springframework.beans.factory.annotation.Autowired import org.springframework.context.annotation.Bean import org.springframework.context.annotation.Configuration @Configuration class Neo4jGraphqlConfig { @Autowired private...

relates to #119 and #97

@yarc Can you please [provide a testcase](https://github.com/neo4j-graphql/neo4j-graphql-java/tree/master/core/src/test/resources/issues) with the expected query.

Schema federation will be not supported by the [successor of the neo4j-graphql-js](https://github.com/neo4j/graphql-tracker-temp/blob/master/introduction.adoc) > **Further Excluded Features** > 1. Additional Labels > 2. GraphQL Architect > 3. Indexes and Constraints >...

we can generate 2 arguments: 1. deprecated enum 2. new input field

> Break it up into 2 steps > > 1. input type for sorting > 2. optionally deep sorting for 1. I created issue #196

@yarc Can you please [provide a testcase](https://github.com/neo4j-graphql/neo4j-graphql-java/tree/master/core/src/test/resources/issues).