This operator is used to combine different results together.
Running
yq eval --null-input '1, true, "cat"'
will output
1truecat
Given a sample.yml file of:
a: fieldAb: fieldBc: fieldC
then
yq eval '.a, .c' sample.yml
fieldAfieldC