-
I guess wrapping up the existing REST api into graphql would be good Idea.
For starters we can use **_`python-graphene`_** or **_`django-restql`_**
-
` return ServiceCategorySerializer(value.all(), many=True).data
`
```
raw_query = request.GET[restql_settings.QUERY_PARAM_NAME]
AttributeError: 'NoneType' object has no attribute 'GET'
…
-
-
Hi, Thank you for the lib.
Would it be possible to add a mechanism for nested fields?
i.e. some how :
Given
`GET http://127.0.0.1:8000/things/`
```json
[
{
"id": 1,
"key1": "val1"…
-
While trying out querying data on the [playground](https://django-restql-playground.yezyilomo.me/#/get), I could not get the excepted result. For example, I chose **Course** model on the playground an…
-
I have a model setup with a FILE object, and to_representation() to fetch additional file data.
```
class File(models.Model):
name = models.CharField(max_length=100)
file = models.FileF…
-
I have a class like this one:
```python
from sqlalchemy import CHAR, Column, ForeignKey, String, TIMESTAMP, Table, text
from sqlalchemy.dialects.mysql import INTEGER, LONGBLOB, LONGTEXT, SMALLINT…
-
Hi, i'm using this module for a while and i thinks it would be awesome if querys can impact the django queryset selection (with only and/or defer) to significantly reduce the amount of information bei…
-
When I use validate data method on a nested serializer, I receive the following message:
"`create` is not a valid operation, valid operations for this request are `add`, `create`, `remove`, `updat…
alepn updated
3 years ago
-
Hi,
I use **NestedField** (with **accept_pk_only**) on **DynamicFieldsMixin** and i get this result:
`'int' object has no attribute 'get'`
Can you help me to solve this problem?