You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there some way to make the default values set in the input type directly work when using the schema-first approach? ✌️
input Pagination {
first: Int! = 20 # This default value is *NOT* included in ResolveInfo
after: String
sort: String
direction: String
}
type Query {
getProjects(
pagination: Pagination = { first: 20 } # This default value is included in ResolveInfo
): ProjectConnection!
}
The text was updated successfully, but these errors were encountered:
Is there some way to make the default values set in the input type directly work when using the schema-first approach? ✌️
The text was updated successfully, but these errors were encountered: