bug/label.go 🔗
@@ -25,5 +25,5 @@ func (l *Label) UnmarshalGQL(v interface{}) error {
// MarshalGQL implements the graphql.Marshaler interface
func (l Label) MarshalGQL(w io.Writer) {
- w.Write([]byte(l))
+ w.Write([]byte(`"` + l.String() + `"`))
}