From 2896c8176c69f861e398b094ff8e017160ebaff4 Mon Sep 17 00:00:00 2001 From: typicode Date: Wed, 18 Feb 2026 18:18:45 +0100 Subject: [PATCH] docs: document in operator in conditions --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index aa1bb4f..8353835 100644 --- a/README.md +++ b/README.md @@ -171,12 +171,14 @@ Operators: - `lt` less than, `lte` less than or equal - `gt` greater than, `gte` greater than or equal - `eq` equal, `ne` not equal +- `in` included in comma-separated list Examples: ```http GET /posts?views:gt=100 GET /posts?title:eq=Hello +GET /posts?id:in=1,2,3 GET /posts?author.name:eq=typicode ```