graphdoc
graphdoc copied to clipboard
Default parameter value is lost
Given:
type Query {
foo(
bar: Int = 1
): Foo!
}
The generated doc will show:
type Query {
foo(
bar: Int
): Foo!
}
The default 1 value isn't displayed anymore.