Get array with all values for certain key in JSON wih JQ
问题 Say I have the following JSON: { "a": 0, "b": "c", "d": { "e": { "f": "g", "comments": { "leading": "Lorem ipsum" }, "h": { "i": { "j": [ 1, 2 ] }, "comments": { "trailing": "dolor sit" } } }, "comments": { "leading": "amet." } } } I want to get an array with the values of all the fields named comments (which can be nested in any level). So, in this case I want to get: [ { "leading": "Lorem ipsum" }, { "trailing": "dolor sit" }, { "leading": "amet." } ] The order of the array doesn't matter.