stygmate

Results 48 comments of stygmate

> ..., 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...

I think i'v seen somwhere in the documentation of llama 3.1 that 8b don't handle multiple turns function calling correctly.

+1 Same need here. I need to make results length unlimited for a field while protecting others.

All seems to take place here: [/relay/utils.py:137](https://github.com/strawberry-graphql/strawberry/blob/main/strawberry/relay/utils.py#L137) We can add a parameter to the field and get it here if it's set.