We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8d2a47 commit 01623a9Copy full SHA for 01623a9
pkg/schema/article.go
@@ -232,7 +232,7 @@ var markAllArticlesAsReadMutationField = &graphql.Field{
232
233
func markAllArticlesAsReadResolver(p graphql.ResolveParams) (interface{}, error) {
234
var category *uint
235
- if val, ok := tooling.ConvGQLIntToUint(p.Args["category"]); ok {
+ if val, ok := tooling.ConvGQLStringToUint(p.Args["category"]); ok {
236
category = &val
237
}
238
0 commit comments