Collect into Array
Collect empty
yq --null-input '[]'[]Collect single
yq --null-input '["cat"]'- catCollect many
a: cat
b: dogLast updated
yq --null-input '[]'[]yq --null-input '["cat"]'- cata: cat
b: dogLast updated
yq '[.a, .b]' sample.yml- cat
- dog