neo4j-graphql / neo4j-graphql-java

Neo4j Labs Project: Pure JVM translation for GraphQL queries and mutations to Neo4j's Cypher

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support extending the schema

Andy2003 opened this issue · comments

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
}