From f60d4e243aa6c784edee5836ba897bc2675a56bb Mon Sep 17 00:00:00 2001 From: jefer94 Date: Mon, 2 Dec 2024 23:15:27 -0500 Subject: [PATCH] update docs --- docs/serializers/query-params.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/serializers/query-params.md b/docs/serializers/query-params.md index 85bcdbf..1aed9f8 100644 --- a/docs/serializers/query-params.md +++ b/docs/serializers/query-params.md @@ -34,10 +34,10 @@ GET /api/v1/users?age<=18 GET /api/v1/users?age=18 ``` -### Not equal to +### Insensitive equal to ```http -GET /api/v1/users?age!=18 +GET /api/v1/users?name~=john ``` ### In @@ -56,7 +56,7 @@ GET /api/v1/users?age[in]=18,20,22 ### Not -This operator is able to negate all the supported operations previously mentioned. +This operator is able to negate all the supported operations previously mentioned, the `!` operator must be prefixed to the operation. ```http GET /api/v1/users?age!=18