Lucas Rangel Cezimbra
Lucas Rangel Cezimbra
> What if I have 3 environments? A `development` environment, a `testing` enviroment and a `production` environment. They have different variables, like different database connection strings, different API keys. Should...
@david-a I was having the same problem, but with `ConnectionTimeout`. Reading the codebase, I found that the [client](https://github.com/elastic/elasticsearch-py/blob/master/elasticsearch/client/__init__.py#L188) receives the args `retry_on_timeout` and `retry_on_status` that are passed to [Transport](https://github.com/elastic/elasticsearch-py/blob/master/elasticsearch/transport.py#L63-L64). I...
@adFrank No news. I think the bug persists.
@sergiomario I think that the PR is a good improvement, but I was thinking of putting in the Jarbas frontend instead of the admin (image below). Because the page below...
@luizfzs > @sergiomario I think that the PR is a good improvement, but I was thinking of putting in the Jarbas frontend instead of the admin (image below). Because the...
@vitalik what about nested fields? Example: ```python from typing import List from django.db import models from ninja import NinjaAPI, Query, Schema from api.core.models import User api = NinjaAPI() class Post(models.Model):...
Thanks for the quick answer. It works for filtering by the nested values, but I couldn't make it work for field selection/dynamic response. ```python ... class PostSchema(Schema): id: int =...
> not sure if this is what you need What I'm suggesting is to have the ability to select the response fields using the query parameters. As suggested by the...
> Maybe it's also make sense to add some builtin method like "register_field_type("CustomField", MyPydanticType) that will update TYPES > > and then error message should suggest to use this function...
I forked the project to implement some features that I needed. Source: https://github.com/lucasrcezimbra/ninja-api-key PyPI: https://pypi.org/project/ninja-api-key/