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

generate plural names for augmented fields and types

Andy2003 opened this issue · comments

given schema:

type Movie {
    id: ID
    title: String
}

should generate a schema like the following where the query name is pluralized:

// rest of generated stuff
type Query {
  movies(where: MovieWhere, options: MovieOptions): [Movie]!
}