diff --git a/internal/graph/graph.go b/internal/graph/graph.go index 50316ea..ee69301 100644 --- a/internal/graph/graph.go +++ b/internal/graph/graph.go @@ -44,7 +44,7 @@ func NewHandler(repo db.Repository) http.Handler { } var subjectID uuid.UUID - in := graphql.GetResolverContext(ctx).Args["input"] + in := graphql.GetFieldContext(ctx).Args["input"] val := reflect.ValueOf(in) // could be any underlying type if val.Kind() == reflect.Ptr { val = reflect.Indirect(val)