José San Gil

Results 8 comments of José San Gil

Same problem with mysql 8.0.15. It only worked after switching to mysql 5.7

I think this would break the `from_dict`. For example: ```python @dataclass class PayloadWithNullable(InputModel): required: str opt_nullable: Nullable[Optional[str]] = None # ... assert PayloadWithNullable.from({'required': 'foo'}) == PayloadWithNullable(required='foo', opt_nullable=None) assert PayloadWithNullable.from({'required': 'foo',...

Thank you @revati. I'll leave the issue open until finally fixed.

Ok. I imagine as there is not a `serializers_class` decorator, neither a property that can be extracted from function based views, it's not possible get the fields description

Hey @abernix, thanks for taking the time to review the PR and look into this issue. We have been using Apollo Federation since version 0.6.x. Our architecture is composed by...

This used to be the case for the types defined at `@types/joi`. I've been using a helper function to achieve this. I wonder if the generic on `ValidationResult` was removed...

Sorry for pinging @tobio — and thank you for adding support for alerting— but following @benjyabr's question, when do you plan to release the new version including #292?