-
Notifications
You must be signed in to change notification settings - Fork 0
/
neo4j.go
105 lines (85 loc) · 1.72 KB
/
neo4j.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
96
97
98
99
100
101
102
103
104
105
package main
import (
"strconv"
)
type CypherResult struct {
Raw interface{}
}
func NewCypherResult() *CypherResult {
return &CypherResult{}
}
func (p *CypherResult) ToStringSlice() []string {
res, ok := p.Raw.([]interface{})
if !ok {
panic("cypher result: wrong raw value type")
}
ret := []string{}
for _, val := range res {
s := val.(string)
if len(s) > 0 {
ret = append(ret, s)
}
}
return ret
}
func (p *CypherResult) ToInt64Slice() []int64 {
res, ok := p.Raw.([]interface{})
if !ok {
panic("cypher result: wrong raw value type")
}
ret := []int64{}
for _, val := range res {
if val != nil {
switch v := val.(type) {
case string:
l, err := strconv.ParseInt(v, 10, 64)
if err != nil {
panic("conversion error")
}
ret = append(ret, l)
case int64:
ret = append(ret, v)
case float64:
ret = append(ret, int64(v))
default:
panic("unhandled type")
}
}
}
return ret
}
func (p *CypherResult) GetAt(idx int) *CypherResult {
res, ok := p.Raw.([]interface{})
if !ok {
panic("cypher result: wrong raw value type")
}
if len(res) > idx {
return &CypherResult{Raw: res[idx]}
}
return nil
}
func (p *CypherResult) FilterResultsBy(name string) *CypherResult {
res, ok := p.Raw.([]interface{})
if !ok {
panic("cypher result: wrong raw value type")
}
ret := []interface{}{}
for _, r := range res {
mp := r.(map[string]interface{})
if val, ok := mp[name]; ok {
ret = append(ret, val)
}
}
return &CypherResult{Raw: ret}
}
func (p *CypherResult) GetProperty(name string) interface{} {
res, ok := p.Raw.(map[string]interface{})
if !ok {
panic("cypher result: wrong raw value type")
}
val, ok := res[name]
if !ok {
return nil
}
return val
}