dharani7998

Results 6 issues of dharani7998

It would be nice to have a pre_validate decorator which could help initialize/process deserialized data on the schema context before the field validators are invoked. And maybe even a post_validate...

enhancement

I have a UserSchema with a pre_load(pass_many=False) decorator, suppose if the pre_load decorator raises ValidationError, all the objects in the collection I passed became invalid even though there are some...

Here id field has a load_default value, it doesn't invoke the fn_validator when the value is not present in the dict but it invokes the decorator function ```py def fn_validator(value:...

How can I query the validation/authorization errors while performing a mutation? ![image](https://user-images.githubusercontent.com/75964357/195334665-4e6b1cbd-8e83-4ade-9411-087a7711304a.png)

Hi, I was trying out the query optimizer for my POC but even a simple query returned an error. ``` class ProductType(DjangoObjectType): class Meta: model = Product fields = ALL_FIELDS...