Skip to content

Commit

Permalink
docs: result of filtering is always a list, not a single item
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasschaefer committed Jul 1, 2024
1 parent 28bc4c9 commit 3f0b150
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ accessed by their key.
b: 10
}
][b > 7]
// {a: "p2", b: 10}
// [{a: "p2", b: 10}]
```

### Projection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ While filtering, the entries of the current context element can be accessed by t
b: 10
}
][b > 7]
// {a: "p2", b: 10}
// [{a: "p2", b: 10}]
```

### Projection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ accessed by their key.
b: 10
}
][b > 7]
// {a: "p2", b: 10}
// [{a: "p2", b: 10}]
```

### Projection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ accessed by their key.
b: 10
}
][b > 7]
// {a: "p2", b: 10}
// [{a: "p2", b: 10}]
```

### Projection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ accessed by their key.
b: 10
}
][b > 7]
// {a: "p2", b: 10}
// [{a: "p2", b: 10}]
```

### Projection
Expand Down

0 comments on commit 3f0b150

Please sign in to comment.