The query builder uses universal bracket syntax:
```text
field[operator]=value
```
Examples:
```rust
client.query("/products")
```
Generated query:
```text
price[gte]=100&category[in]=hardware,software
```
Supported operators include comparison, string, array, null, range, and custom operators.