Patrick Arminio
Patrick Arminio
@memark not yet, are you interested in a Relay pagination or basic pagination?
@memark cool! maybe I can write a guide, it shouldn't be too difficult to roll your own since we have support for generics. Would that help? I wouldn't commit to...
@nrbnlulu ok, I'll reach out to you in the next few days 😊 thanks for making time to go through the code
@nrbnlulu not yet sorry, I'm travelling for conferences so I don't have a lot of focused time 😊
For 2: ## can't override type (easily ) my idea was to use the decorated function to update the return type: ```python @strawberry.type class Paginated(T): items: T has_next: bool def...
> > ### can't override type (easily ) > > my idea was to use the decorated function to update the return type: > > what if the user gave...
I think that looks good, if I want to add description to argument will it look like this? ```python class PaginatedExtension(FieldExtension): def apply(self, field): assert field.type is list if "first"...
> > I think that looks good, if I want to add description to argument will it look like this? > > Yes I guess so. Though it might be...
hi @nrbnlulu, I haven't had the chance of taking a proper look at this. I just wanted to ask you if you have seen this proposal from @jkimbo https://github.com/strawberry-graphql/strawberry/issues/920 ?...
@mecampbellsoup I've tried this with both starlette and django, it seems to be working fine. maybe there's something in your resolver that's causing the issue? or do you have a...