Is there a way to collapse all json fields in Postman

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.

+6
source share
2 answers

You can use Alt-0 to collapse everything and Alt-Shift-0 to fall apart.

There was a problem here that points to all shortcuts working with ace .

+11
source

On a Mac, this is Command-Option-0 to collapse everything, and Command-Option-Shift-0 to collapse.

0
source

All Articles