given schema: ```graphql type Movie { id: ID title: String } ``` should generate a schema like the following where the query name is pluralized: ```graphql // rest of generated stuff type Query { movies(where: MovieWhere, options: MovieOptions): [Movie]! } ```