Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jefer94 committed Dec 3, 2024
1 parent a200680 commit f60d4e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/serializers/query-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f60d4e2

Please sign in to comment.