Slide 38
Slide 38 text
エラーを するヘルパー
func AddError(ctx context.Context) (bool, error) {
graphql.AddError(ctx, &gqlerror.Error{
Path: graphql.GetPath(ctx),
Message: "A descriptive error message",
Extensions: map[string]interface{}{
"code": "4",
},
})
return false, gqlerror.Errorf("BOOM! Headshot")
}
38 / 39