(prefix string)
| 39 | } |
| 40 | |
| 41 | func (i Id) HasPrefix(prefix string) bool { |
| 42 | return strings.HasPrefix(string(i), prefix) |
| 43 | } |
| 44 | |
| 45 | // UnmarshalGQL implement the Unmarshaler interface for gqlgen |
| 46 | func (i *Id) UnmarshalGQL(v interface{}) error { |
no outgoing calls