-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresolver_user.go
62 lines (48 loc) · 1.2 KB
/
resolver_user.go
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"context"
"time"
graphql "github.com/graph-gophers/graphql-go"
)
type User struct {
UserID graphql.ID
CreatedAt time.Time
UpdatedAt time.Time
Email string
EmailVerified bool
AuthProvider string
PhotoURL *string
DisplayName *string
Username *string
}
type UserResolver struct{ user *User }
func (r *UserResolver) UserID() graphql.ID {
return r.user.UserID
}
func (r *UserResolver) CreatedAt() string {
return r.user.CreatedAt.UTC().Format(PostgresTimestamptzFormat)
}
func (r *UserResolver) UpdatedAt() string {
return r.user.UpdatedAt.UTC().Format(PostgresTimestamptzFormat)
}
func (r *UserResolver) Email() string {
return r.user.Email
}
func (r *UserResolver) EmailVerified() bool {
return r.user.EmailVerified
}
func (r *UserResolver) AuthProvider() string {
return r.user.AuthProvider
}
func (r *UserResolver) PhotoURL() *string {
return r.user.PhotoURL
}
func (r *UserResolver) DisplayName() *string {
return r.user.DisplayName
}
func (r *UserResolver) Username() *string {
return r.user.Username
}
func (r *UserResolver) Notes(ctx context.Context, args NotesArgs) ([]*NoteResolver, error) {
return RootRx.Notes(ctx, args)
}