Merged
requested to merge github/fork/antonio-petricca/graphql-nodejs-express-server-lists-fixup into master
Created by: antonio-petricca
This PR fixes the arrays/lists rendering.
Previous output:
type MyDTO {
MyField: MyListType
}
Fixed output:
type MyDTO {
MyField: [MyListType!]
}