Hi all,
I'm trying to use neo4j-graphql-java to translate graphql queries into cypher statements, using the movie example.
My schema.graphqls:
type Query {
hello: String!
person(name: String): Person
}
type Movie {
title: String!
released: Int
taglin...