1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package resolvers
import (
"context"
"github.com/MichaelMure/git-bug/bug"
)
type personResolver struct{}
func (personResolver) Name(ctx context.Context, obj *bug.Person) (*string, error) {
if obj.Name == "" {
return nil, nil
}
return &obj.Name, nil
}
func (personResolver) Email(ctx context.Context, obj *bug.Person) (*string, error) {
if obj.Email == "" {
return nil, nil
}
return &obj.Email, nil
}
func (personResolver) Login(ctx context.Context, obj *bug.Person) (*string, error) {
if obj.Login == "" {
return nil, nil
}
return &obj.Login, nil
}
func (personResolver) AvatarURL(ctx context.Context, obj *bug.Person) (*string, error) {
if obj.AvatarUrl == "" {
return nil, nil
}
return &obj.AvatarUrl, nil
}
|