Mapiarz
Mapiarz
>>And for curiosity, the official graphql-relay-js does the same for its [ArrayConnection](https://github.com/graphql/graphql-relay-js/blob/main/src/connection/arrayConnection.ts#L132), which is a limit/offset approach and cursors are converted to a base64 version of arrayconnection:1234 >I'm disappointed but...
Right now the only way of achieving this is to remove the field from `Bar.__strawberry_definition__.fields` before the `Schema` is created. That was suggested in the Discord discussion.
Thanks @sobolevn. I tried this for one of my classes and unfortunately that alone doesn't seem to cut it. The related fields are `Any`. Is there something still missing? Can...
I was able to integrate `django-multitenant` by creating stubs for their models like this: ```python from typing import ( TypeVar, ) from django.db import models from django_multitenant import mixins _M...
@bellini666 So I presume there's no way to apply a directive to an object either? Would that be difficult to implement? Where one would have to start?
Bump with support for 5.0 ;)
@sjamaan The contrib docs seem outdated and I cannot get the tests to run, so I'm not going to write one, sorry. But this is a really simple problem. If...
> It looks like your entire interval is negative. Yes, that's correct, but I'm just giving an example man. You can repro it with something like `relativedelta(seconds=-1, microseconds=-5)`. The problem...
>But something like relativedelta(seconds=1,microseconds=-5) would get normalized to P0.999995S (as per [format_relativedelta](https://github.com/CodeYellowBV/django-relativedelta/blob/master/src/relativedeltafield/utils.py#L90)). That's why I was confused at first. Sure, but `relativedelta(seconds=-1,microseconds=-5)` (notice the minus 1 second) already doesn't make...
FWIW here's a small `poetry -> uv` migration guide that should get most people started. I do realize it's not good enough to slap in the docs. There are a...