# Has

This operation returns true if the key exists in a map (or index in an array), false otherwise.

## Has map key

Given a sample.yml file of:

```yaml
- a: yes
- a: ~
- a:
- b: nope
```

then

```bash
yq '.[] | has("a")' sample.yml
```

will output

```yaml
true
true
true
false
```

## Select, checking for existence of deep paths

Simply pipe in parent expressions into `has`

Given a sample.yml file of:

```yaml
- a:
    b:
      c: cat
- a:
    b:
      d: dog
```

then

```bash
yq '.[] | select(.a.b | has("c"))' sample.yml
```

will output

```yaml
a:
  b:
    c: cat
```

## Has array index

Given a sample.yml file of:

```yaml
- []
- [1]
- [1, 2]
- [1, null]
- [1, 2, 3]

```

then

```bash
yq '.[] | has(1)' sample.yml
```

will output

```yaml
false
false
true
true
true
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mikefarah.gitbook.io/yq/operators/has.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
