shane
07/31/2019, 10:01 PMconst foo = inputObjectType({
name: 'foo',
definition(t) {
t.string('bar', { list: true, nullable: true })
}
})
generated input is always:
input foo {
bar: [String!]
}
desired outcome would be:
input foo {
bar: [String]
}
harmony
07/31/2019, 11:04 PMshane
08/01/2019, 3:19 AMHarshit
08/01/2019, 4:21 PMt.string("test", {
list: [false],
nullable: true,
})
shane
08/01/2019, 4:29 PMharmony
08/01/2019, 8:30 PM