Serge Matveenko
Serge Matveenko
Current behavior is to return file name for `FileField` and `ImageField` type attributes of `graphene_django.types.DjangoObjectType`. It seems completely unusable as we always need an actual url of the file or...
There are two very useful options for DateTimeField in Django: auto_now and auto_now_add. From django docs: """ **auto_now** Automatically set the field to now every time the object is saved....
I would like the following code more but it will always call `core_schema.any_schema()` ```suggestion content_core_schema = schema.get('schema', core_schema.any_schema()) ``` It would be nice to have a constant like `core_schema.DEFAULT_SCHEMA` that...
See https://github.com/pydantic/pydantic/pull/5949#pullrequestreview-1453562865 - `__pydantic_fields_set__` logic is missing from root model inconsistent - Maybe expose a special `no value` value for passing to `SchemaValidator.validate_python` in case no data was provided and...
Ensure the PR is Open (not a Draft) when acting on a `please review` comment. The use case would be to keep a PR in the Draft state up until...
The current behavior is to select a random contributor as an PR or issue assignee if there is no corresponding (`reviewers` or `assignees`) configuration present. This behavior could be a...
actual ```json "asset_name__var_name": { "type": "list", "default": [ { "foo": "abc", "bar": "xyz" } ] } ``` expected ```json "asset_name__var_name": { "type": "map", "default": [ { "foo": "abc", "bar": "xyz"...
Require explicit control over whether it is allowed to override a var or not. Consider implementing the following options: * default behavior — allows overriding by any asset using multi-inheritance...
- [ ] Use pyventory cli utility to prepare `assets.py` file. - [ ] Configure what exporters are being used. - [ ] Allow custom name for the file. -...
Allow overriding parts of the structures defined using complex dicts structures like the following ```python class MyAsset(Asset): complex_var = dict( key1=dict( sub_key1='sub_value1', sub_key2='sub_value2', ) key2='value2', ) ```