I work with the chrome-app mail server and I sometimes extract long and complex json objects. For easy operation, I need to collapse the entire json object, but I can not find an option (if any) in the program or how to do it. So far, I am using another application (JsonViewer) only to better present the result.
Is there a way to collapse all json fields in an application?
for example from:
{ "some object" : { "some att" : "foo", "other att" : "bar" }, "somearray" : [ "asdf", "qwer", "zxcv" ] }
in
{ "some object" : { + }, "somearray" : [ + ] }
PD: I know that it is possible to collapse the field in the json field, but I want to collapse the entire object. In large objects, this feature is much appreciated.
source share