-
I want to use the serializer with the queryset and the graph query as string, How can I do this?
thanks!
-
Hello Vitalik,
I hope you are fine and doing well.
I have finished migrating two projects to Ninja, it was an awesome experience, performance-wise, the outcome is very noticeable.
I have a pr…
-
Using the `@extend_schema` decorator as below will append `foo` to the list of auto-discoverd query parameters. Is it instead possible to _replace_ the list with the given values (so that `foo` will b…
-
Not sure what I'm doing wrong, but I'd really love to get this fixed after following the README pretty exact I think.
`serializers.py`
```
from rest_flex_fields import FlexFieldsModelSerializer
…
-
can i send data when `accept_pk=True`
```python
class AddressSerializer(DynamicFieldsMixin, serializers.ModelSerializer):
"""Serializer for address model."""
class Meta:
"""Meta…
-
Having it configured:
```
organization = NestedField(
OrganizationSerializer,
accept_pk=True,
create_ops=[ADD, CREATE],
update_ops=[])
```
I am able to …
-
-
I just wanted to say that I discovered your package recently and I'm absolutely blown away with what it can do. I was actually thinking of switching from drf to graphene until I found your repo. I'm s…
-
- This will allow the library to work with any filter backend and any pagination class without requiring integration.
- With this `DEFAULT_BASE_FILTER_BACKEND` setting will not be needed anymore as …
-
Not sure if this is an issue or I'm just doing something wrong.
My models:
```
class Application(models.Model):
customer = models.ForeignKey("Customer",
rel…