2.4 KiB
Operators
In yq
expressions are made up of operators and pipes. A context of nodes is passed through the expression and each operation takes the context as input and returns a new context as output. That output is piped in as input for the next operation in the expression. To begin with, the context is set to the first yaml document of the first yaml file (if processing in sequence using eval).
Lets look at a couple of examples.
Example with a simple operator
Given a document like:
- [a]
- "cat"
with an expression:
.[] | length
yq
will initially set the context as single node of the entire yaml document, an array of two elements.
- [a]
- "cat"
This gets piped into the splat operator .[]
which will split out the context into a collection of two nodes [a]
and "cat"
. Note that this is not a yaml array.
The length
operator take no arguments, and will simply return the length of each matching node in the context. So for the context of [a]
and "cat"
, it will return a new context of 1
and 3
.
This being the last operation in the expression, the results will be printed out:
1
3
Example with an operator that takes arguments.
Given a document like:
a: cat
b: dog
with an expression:
.a = .b
The =
operator takes two arguments, a lhs
expression, which in this case is .a
and rhs
expression which is .b
.
It pipes the current, lets call it 'root' context through the lhs
expression of .a
to return the node
cat
Note that this node holds not only its value 'cat', but comments and metadata too, including path and parent information.
The =
operator then pipes the 'root' context through the rhs
expression of .b
to retun the node
dog
Both sides have now been evaluated, so the operator performs its actual operation of assignment, and copies across the value from the RHS to the value on the LHS, and it returns the now updated 'root' context:
a: cat
b: dog
Relative update (e.g. |=
)
There is another form of the =
operator which we call the relative form. It's very similar to =
but with one key differnce when evaluating the RHS expression.
In the plain form, we pass in the 'root' level context to the RHS expresssion. In relative form, we pass in each result of the LHS to the RHS expression. Let's go through an example.