-
Notifications
You must be signed in to change notification settings - Fork 58
/
connection_types.go
76 lines (67 loc) · 1.86 KB
/
connection_types.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package relay
import (
"fmt"
)
type ConnectionCursor string
type PageInfo struct {
StartCursor ConnectionCursor `json:"startCursor"`
EndCursor ConnectionCursor `json:"endCursor"`
HasPreviousPage bool `json:"hasPreviousPage"`
HasNextPage bool `json:"hasNextPage"`
}
type Connection struct {
Edges []*Edge `json:"edges"`
PageInfo PageInfo `json:"pageInfo"`
}
func NewConnection() *Connection {
return &Connection{
Edges: []*Edge{},
PageInfo: PageInfo{},
}
}
type Edge struct {
Node interface{} `json:"node"`
Cursor ConnectionCursor `json:"cursor"`
}
// Use NewConnectionArguments() to properly initialize default values
type ConnectionArguments struct {
Before ConnectionCursor `json:"before"`
After ConnectionCursor `json:"after"`
First int `json:"first"` // -1 for undefined, 0 would return zero results
Last int `json:"last"` // -1 for undefined, 0 would return zero results
}
type ConnectionArgumentsConfig struct {
Before ConnectionCursor `json:"before"`
After ConnectionCursor `json:"after"`
// use pointers for `First` and `Last` fields
// so constructor would know when to use default values
First *int `json:"first"`
Last *int `json:"last"`
}
func NewConnectionArguments(filters map[string]interface{}) ConnectionArguments {
conn := ConnectionArguments{
First: -1,
Last: -1,
Before: "",
After: "",
}
if filters != nil {
if first, ok := filters["first"]; ok {
if first, ok := first.(int); ok {
conn.First = first
}
}
if last, ok := filters["last"]; ok {
if last, ok := last.(int); ok {
conn.Last = last
}
}
if before, ok := filters["before"]; ok {
conn.Before = ConnectionCursor(fmt.Sprintf("%v", before))
}
if after, ok := filters["after"]; ok {
conn.After = ConnectionCursor(fmt.Sprintf("%v", after))
}
}
return conn
}