-
```
$ GO111MODULE="on" go get -u github.com/controlplaneio/kubesec/cmd/kubesec 32s 12:38:24
go: found github.com/controlplaneio/kubesec/c…
-
你好,我在使用 gojsonq 的时候发现没有偏移量 Offset 这个方法了。
部分代码如下,没有 Offset 方法,请问你用的是那个版本的 gojsonq
```
r1 := gq.From("items").Select("id", "name").Limit(3).Get()
```
-
From the example on the readme:
```
package main
import "github.com/thedevsaddam/gojsonq"
func main() {
const json = `{"name":{"first":"Tom","last":"Hanks"},"age":61}`
age := gojsonq.New…
-
I'm unable to download versions newer than v2.3.0 seem to be unavailable. Per https://pkg.go.dev/github.com/thedevsaddam/gojsonq/?tab=doc v2.3.0 is the latest version.
Please suggest what I should…
-
Getting this error when trying to use the FromInterface method:
`gojsonq.New().FromInterface undefined (type *gojsonq.JSONQ has no field or method FromInterface)`
-
const json = `[{"city":"dhaka","type":"weekly","temperatures":[30,39.9,35.4,33.5,31.6,33.2,30.7]}]`
avg := gojsonq.New().JSONString(json).From("[0].temperatures").Avg()
Above code does not work.
…
-
how can I pass i value in
gojsonq.New().FromString(data).From("tab_info.[0].product_info.products.[i]").
the above code will certainly not work.
-
Hi,
I need to parse a csv file that has first general info about data, on 2 lines, and after, a list of measures ( timestamp --> value )
Is it possible to parse it with gojsonq ? I don't really…
-
Using mapping in processes is now limited to first-level data.
```yml
mapping:
foo: { nodeKey: xxx, key: outputA }
bar: { nodeKey: yyy, key: outputB }
```
This is great but quite limited…
-
I am trying to build a server that can fetch certain json entries based on a parameter.
So for example if a user enters localhost:8080/store/1 It returns the json entry with the ID 1.
The code i c…