-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme_test.go
41 lines (36 loc) · 998 Bytes
/
readme_test.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
package examples
import (
"fmt"
"github.com/poki/mongodb-filter-to-postgres/filter"
)
func ExampleNewConverter_readme() {
// Remeber to use `filter.WithArrayDriver(pg.Array)` when using github.com/lib/pq
converter, err := filter.NewConverter(filter.WithNestedJSONB("meta", "created_at", "updated_at"))
if err != nil {
// handle error
}
mongoFilterQuery := `{
"$and": [
{
"$or": [
{ "map": { "$regex": "aztec" } },
{ "map": { "$regex": "nuke" } }
]
},
{ "password": "" },
{
"playerCount": { "$gte": 2, "$lt": 10 }
}
]
}`
conditions, values, err := converter.Convert([]byte(mongoFilterQuery), 1)
if err != nil {
// handle error
panic(err)
}
fmt.Println(conditions)
fmt.Printf("%#v\n", values)
// Output:
// ((("meta"->>'map' ~* $1) OR ("meta"->>'map' ~* $2)) AND ("meta"->>'password' = $3) AND ((("meta"->>'playerCount')::numeric >= $4) AND (("meta"->>'playerCount')::numeric < $5)))
// []interface {}{"aztec", "nuke", "", 2, 10}
}