-
It seems that if an API response field value matches with a chained request parameter, restQL replaces the response value by the chained parameter.
Original call to the API: _http://localhost:8000/…
-
I guess wrapping up the existing REST api into graphql would be good Idea.
For starters we can use **_`python-graphene`_** or **_`django-restql`_**
-
When chaining an array response, restQL is making the chained call even when the parameter is not present.
E.g.: In this case, the parameter dataset in some array items is not filled
Query
```
…
-
` return ServiceCategorySerializer(value.all(), many=True).data
`
```
raw_query = request.GET[restql_settings.QUERY_PARAM_NAME]
AttributeError: 'NoneType' object has no attribute 'GET'
…
-
RESTQL = {
'AUTO_APPLY_EAGER_LOADING': False
}
not working for me. everytime i send a get request, the renderer send me an eagerload response. how can i avoid it
-
### Description
Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). An attacker providing a very long string to `isResource` function in `utils/isResou…
-
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"…
-
-
How can I make the pagination work by customising the current plugin? Currently I use customize Clausules, it work but the data like total, page etc is missing when return resp
-
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…