Skip to content

Commit 687c4d5

Browse files
author
Bart Koelman
committed
Corrected example
1 parent 5c2c40b commit 687c4d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage/reading/filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Aside from filtering on the resource being requested (which would be blogs in /b
6363
filtering on included collections can be done using bracket notation:
6464

6565
```http
66-
GET /articles?include=author,tags&filter=equals(author.lastName,'Smith')&filter[tags]=contains(label,'tech','design') HTTP/1.1
66+
GET /articles?include=author,tags&filter=equals(author.lastName,'Smith')&filter[tags]=any(label,'tech','design') HTTP/1.1
6767
```
6868

6969
In the above request, the first filter is applied on the collection of articles, while the second one is applied on the nested collection of tags.

0 commit comments

Comments
 (0)