diff --git a/valid/valid.go b/valid/valid.go index 89f81e1299f550aaff8f748fdf1c9bb753af2b56..e352ef5585d789c435e8fc478a354739cddbf0ef 100644 --- a/valid/valid.go +++ b/valid/valid.go @@ -19,6 +19,17 @@ err *gqlerror.Error } // Returns a new GraphQL error attached to the given field. +func Error(ctx context.Context, field string, msg string) error { + return &gqlerror.Error{ + Message: msg, + Path: graphql.GetPath(ctx), + Extensions: map[string]interface{}{ + "field": field, + }, + } +} + +// Returns a new GraphQL error attached to the given field. func Errorf(ctx context.Context, field string, msg string, items ...interface{}) error { return &gqlerror.Error{ Message: fmt.Sprintf(msg, items...),