2021-11-03 04:00:58 +00:00
|
|
|
# Document Index
|
|
|
|
|
|
|
|
Use the `documentIndex` operator (or the `di` shorthand) to select nodes of a particular document.
|
|
|
|
|
|
|
|
## Retrieve a document index
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
---
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-27 06:21:10 +00:00
|
|
|
yq '.a | documentIndex' sample.yml
|
2021-11-03 04:00:58 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
0
|
|
|
|
---
|
|
|
|
1
|
|
|
|
```
|
|
|
|
|
|
|
|
## Retrieve a document index, shorthand
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
---
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-27 06:21:10 +00:00
|
|
|
yq '.a | di' sample.yml
|
2021-11-03 04:00:58 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
0
|
|
|
|
---
|
|
|
|
1
|
|
|
|
```
|
|
|
|
|
|
|
|
## Filter by document index
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
---
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-27 06:21:10 +00:00
|
|
|
yq 'select(documentIndex == 1)' sample.yml
|
2021-11-03 04:00:58 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
|
|
|
|
## Filter by document index shorthand
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
---
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-27 06:21:10 +00:00
|
|
|
yq 'select(di == 1)' sample.yml
|
2021-11-03 04:00:58 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
|
|
|
|
## Print Document Index with matches
|
|
|
|
Given a sample.yml file of:
|
|
|
|
```yaml
|
|
|
|
a: cat
|
|
|
|
---
|
|
|
|
a: frog
|
|
|
|
```
|
|
|
|
then
|
|
|
|
```bash
|
2022-01-27 06:21:10 +00:00
|
|
|
yq '.a | ({"match": ., "doc": documentIndex})' sample.yml
|
2021-11-03 04:00:58 +00:00
|
|
|
```
|
|
|
|
will output
|
|
|
|
```yaml
|
|
|
|
match: cat
|
|
|
|
doc: 0
|
|
|
|
match: frog
|
|
|
|
doc: 1
|
|
|
|
```
|
|
|
|
|