2021-10-30 03:43:45 +00:00
|
|
|
# Group By
|
|
|
|
|
|
|
|
This is used to group items in an array by an expression.
|
|
|
|
|
|
|
|
## Group by field
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
- foo: 1
|
|
|
|
bar: 10
|
|
|
|
- foo: 3
|
|
|
|
bar: 100
|
|
|
|
- foo: 1
|
|
|
|
bar: 1
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-28 01:45:43 +00:00
|
|
|
yq 'group_by(.foo)' sample.yml
|
2021-10-30 03:43:45 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
- - foo: 1
|
|
|
|
bar: 10
|
|
|
|
- foo: 1
|
|
|
|
bar: 1
|
|
|
|
- - foo: 3
|
|
|
|
bar: 100
|
|
|
|
```
|
|
|
|
|
2023-09-26 04:50:18 +00:00
|
|
|
## Group by field, with nulls
|
2021-10-30 03:43:45 +00:00
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
- cat: dog
|
|
|
|
- foo: 1
|
|
|
|
bar: 10
|
|
|
|
- foo: 3
|
|
|
|
bar: 100
|
|
|
|
- no: foo for you
|
|
|
|
- foo: 1
|
|
|
|
bar: 1
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-28 01:45:43 +00:00
|
|
|
yq 'group_by(.foo)' sample.yml
|
2021-10-30 03:43:45 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
- - cat: dog
|
|
|
|
- no: foo for you
|
|
|
|
- - foo: 1
|
|
|
|
bar: 10
|
|
|
|
- foo: 1
|
|
|
|
bar: 1
|
|
|
|
- - foo: 3
|
|
|
|
bar: 100
|
|
|
|
```
|
|
|
|
|