neo4j-graphql-java
neo4j-graphql-java copied to clipboard
Support extending the schema
Add support for the extend
keyword.
Given schema:
type Movie {
id: ID
}
extend type Movie {
name: String
}
would be augmented to
type Movie {
id: ID
name: String
}