dfang
1
jq is really great to read deep level json response. there is pure go implemention of jq like this.
there are some libs about jq in hex or github, but it seems they are not mature.
how do you guys deal with deep level json?
Jason.decode then Map.get or Enum.map/filter?
1 Like
NobbZ
2
Lens like accessors through Kernel.get_in/2
usually works sufficiently well.
6 Likes
dfang
3
Thank you, i tried to play it with some json files. Yes, it usually works sufficiently well. just another style of syntax 