This
Accepts no arguments.
Returns the current value. Is most commonly used in comparison functions when you want to reference the value of the current element.
.
is an alias for this()
.$ echo '{"x": 1, "y": 2, "z": 3}' | dasel -r json 'all().this()'
1
2
3
$ echo '{"x": 1, "y": 2, "z": 3}' | dasel -r json 'all().'
1
2
3
Last modified 9mo ago