YoilyL
YoilyL
> Alternatively, you could do the [same as I did](https://github.com/N-Coder/studip-fuse/commit/0fb71e095f33995bac25b537879ad3f0bfff9e7f#diff-d87de6068b83be4f08336cfe213d4f79) while waiting for `fusepy` to get a new release with some bugfixes, just copy the dependency's code over to your...
I implemented this in my own project (by subclassing ListFastAPIView). is it ok if I just post the code here instead of making a PR?
```from typing import Any, Literal, Optional from fastapi import Depends, Query from fastapiwee.crud import viewsets from fastapiwee.pwpd import PwPdModel from pydantic import BaseModel, Field, create_model def list_serializer(model): pd_model = PwPdModel.make_serializer(model)...
This allows filtering by one value as well as multiple values. **NOTE**: using multiple arguments for the same parameter will work like OR, not AND. **example**: _?text=test_ will return a...