Path sets the path to the JSON value of a column. ValuePath(b, "column", Path("a", "b", "[1]", "c"))
(path ...string)
| 412 | // |
| 413 | // ValuePath(b, "column", Path("a", "b", "[1]", "c")) |
| 414 | func Path(path ...string) Option { |
| 415 | return func(p *PathOptions) { |
| 416 | p.Path = path |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | // DotPath is similar to Path, but accepts string with dot format. |
| 421 | // |
no outgoing calls
searching dependent graphs…