stygmate

Results 35 comments of stygmate
trafficstars

> ..., but trying to write in input from a mobile (especially Android) will make typing a hell. @LinusBorg @besnikh exactly the same problem in my app !

It's really important feature. Any evolution ?

@bellini666 It’s more a quality of life problem for developers. It doesn’t seems possible to have declarations of validators as methods in input types by using extensions, does it ?

@patrick91 I use a mix of strawberry-django and strawberry inputs. Sometimes needing to validate fields using subtypes not existing in django model. Can it work ?

@patrick91 not only. a example (in code/pseudo-code 😅 ): ```python from django.db import models class ExampleModel(models.Model): name = models.CharField(max_length=255) data = models.JSONField() def __str__(self): return self.name ``` ```python import strawberry...