-
Hello,
I recently encounter an issue with using NestedModelSerializer for updating a nested field. I am wondering if it is a bug.
For example, I have the nested serializer set up this way:
```
…
-
When attempting to create/update using a serializer that has a `NestedField` serializer that has `allow_null` set, if a blank/empty value is passed in (or no value is passed in), [this stack trace pop…
-
@yezyilomo Thanks for such a wonderful library, but I think docs should explain both ways to declare a custom query name.
For everywhere in my project I should be able to declare it in the settings …
-
As the data fetched is controlled by client, and not the server, a malicious client can create a very expensive query with lots of nested fields and joins and can bring down the server. There must be …
-
Something that I really like about drf-dynamic-fields is that they simplify the SQL query, if you are just asking for `fields=pk` then the SQL avoids making prefetched queries. Wondering if this coul…
-
Hey there!
Have started recently using the project and super impressed! Very helpful to be able to narrow down the fields returned on the fly.
One consideration my team and I had was about tryin…
-
In case when i use one to many fields i need to pass serializer's id into different serializer.
```
def get_a_list(self, obj):
child = b.objects.all()
serializer = BListSerializer(instan…
-
Very nice work. In the readme says:
> My intention is to extend the capability of [drf-dynamic-fields ](https://github.com/dbrgn/drf-dynamic-fields)
What about supporting the regular django synt…
-
When using restql, we found that the filtering as-is is great if there are not a high number of fields. But sometimes we have a case where we'd like everything except a handful of fields on a larger s…
-
My GET body is like below:
GET : /images
```
{
"id": 1,
"images": [
{
"image": "e3942bf0-6c6.png",
"width": 353,
…