Closed
Description
For a mutation with a schema like;
type BookInput {
name: String!
authorId: Int!
options: [BookInputOption!]!
}
type Mutation {
addBook(bookInput: BookInput!): ...
}
The options are discarded by the DataBinder
, because it can't map a List
of HashMap
s to a List
of BookInputOption
s.
See this branch for a failing test: https://github.com/koenpunt/spring-graphql/tree/nested-list