We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to get inline default values when don't set value
get inline default values when don't set value like #73
schema
type Query { hoge Hoge! } type Hoge { foos(first: Int = 1000, after: String, orderBy: SubscriptionOrder = {field: CREATED_AT, direction: ASC}): FooConnection! } type Foo { id ID } type FooConnection { edges [FooEdge] pageInfo: PageInfo! } type FooEdge { cursor: String! node: Foo }
query
query { hoge { foos { edges{ node { id } } } } }
when
func (r *hogeResolver) Foos(first *int, after *string, orderBy *model.SubscriptionOrder) (*model.FooConnection, error) { fmt.Println(first, after, orderBy) return nil, nil } // output 1000 <nil> &{CREATED_AT ASC}
gqlgen version
go version
The text was updated successfully, but these errors were encountered:
Sorry I can get it !
Sorry, something went wrong.
No branches or pull requests
What happened?
I want to get inline default values when don't set value
What did you expect?
get inline default values when don't set value like #73
Minimal graphql.schema and models to reproduce
schema
query
when
versions
gqlgen version
? v0.10.2-devgo version
? 1.13.7The text was updated successfully, but these errors were encountered: