Revert gqlgen file

This commit is contained in:
Ruben Mennes 2022-11-17 17:20:30 +01:00
parent 53fc04b5b2
commit b449598bff
1 changed files with 8 additions and 9 deletions

View File

@ -1,24 +1,23 @@
package main
// Arguments to format are:
//
// [1]: type name
const gqlgenMethods = `
// MarshalGQL implements the graphql.Marshaler interface for %[1]s
func (i %[1]s) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(i.String()))
fmt.Fprint(w, strconv.Quote(i.String()))
}
// UnmarshalGQL implements the graphql.Unmarshaler interface for %[1]s
func (i *%[1]s) UnmarshalGQL(value interface{}) error {
str, ok := value.(string)
if !ok {
return fmt.Errorf("%[1]s should be a string, got %%T", value)
}
str, ok := value.(string)
if !ok {
return fmt.Errorf("%[1]s should be a string, got %%T", value)
}
var err error
*i, err = %[1]sString(str)
return err
var err error
*i, err = %[1]sString(str)
return err
}
`