Karel Jílek
Karel Jílek
Hi, the library seems to be unable to do something like the following, and it would be really nice if it could: ``` query{ books(ordering: ["name, id"]){ id name }...
Hi! Doing [this](https://github.com/eamigo86/graphene-django-extras/blob/master/graphene_django_extras/converter.py#L264): ```python @convert_django_field.register(models.DurationField) def convert_field_to_float(field, registry=None, input_flag=None, nested_field=False): return Float( description=field.help_text or field.verbose_name, required=is_required(field) and input_flag == "create", ) ``` results in this: ``` float() argument must be...
Hi everyone, I would like to implement an easy permissions system. With original `graphene-django`, it was quite straightforward. It was sufficient to make a similar method for each field on...
Hi! As of now, it seems to be the case that the testcases can be filtered by a substring or by exact match (https://github.com/laumann/compiletest-rs/blob/master/src/common.rs#L149). I would appreciate if I could...
Imagine a data model with two entities, companies and people. A person works for exactly one company and a company has multiple employees. A company also must have a manager,...