graphdoc icon indicating copy to clipboard operation
graphdoc copied to clipboard

Default parameter value is lost

Open sp00m opened this issue 7 years ago • 0 comments

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.

sp00m avatar Jun 21 '18 13:06 sp00m