forked from continuum-samreen-shaikh/relay-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconnection_types.go
95 lines (85 loc) · 2.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package relay
import (
"fmt"
)
type ConnectionCursor string
type PageInfo struct {
StartCursor int `json:"startCursor"`
EndCursor int `json:"endCursor"`
HasPreviousPage bool `json:"hasPreviousPage"`
HasNextPage bool `json:"hasNextPage"`
TotalCount int `json:"totalCount"`
}
type Connection struct {
Edges []*Edge `json:"edges"`
PageInfo PageInfo `json:"pageInfo"`
StaticInfo string `json:"staticInfo"`
}
func NewConnection() *Connection {
return &Connection{
Edges: []*Edge{},
PageInfo: PageInfo{},
}
}
type Edge struct {
Node interface{} `json:"node"`
Cursor int `json:"cursor"`
}
// Use NewConnectionArguments() to properly initialize default values
type ConnectionArguments struct {
Before int `json:"before"`
After int `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
Sort ConnectionCursor `json:"sort"`
Filter ConnectionCursor `json:"filter"`
}
type ConnectionArgumentsConfig struct {
Before int `json:"before"`
After int `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"`
Sort ConnectionCursor `json:"sort"`
Filter ConnectionCursor `json:"filter"`
}
func NewConnectionArguments(filters map[string]interface{}) ConnectionArguments {
conn := ConnectionArguments{
First: -1,
Last: -1,
Before: -1,
After: -1,
Sort: "",
Filter: "",
}
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 {
if before, ok := before.(int); ok {
conn.Before = before
}
}
if after, ok := filters["after"]; ok {
if after, ok := after.(int); ok {
conn.After = after
}
}
if sort, ok := filters["sort"]; ok {
conn.Sort = ConnectionCursor(fmt.Sprintf("%v", sort))
}
if filter, ok := filters["filter"]; ok {
conn.Filter = ConnectionCursor(fmt.Sprintf("%v", filter))
}
}
return conn
}