strawberry icon indicating copy to clipboard operation
strawberry copied to clipboard

A GraphQL library for Python that leverages type annotations 🍓

Results 331 strawberry issues
Sort by recently updated
recently updated
newest added

I'm working on generating API docs for Strawberry, and noticed some issue with how we named some modules. For example we have `strawberry.auto` as an export, but we also have...

## Feature Request Type - [ ] Core functionality - [ ] Alteration (enhancement/optimization) of existing feature(s) - [x] New behavior ## Description Currently to register a GraphQL Enum from...

## Describe the Bug The following code is more or less a copy of what appears in the docs: ```py from starlette.applications import Starlette from strawberry.asgi import GraphQL from .schema...

bug

## Feature Request Type - [ ] Core functionality - [x] Alteration (enhancement/optimization) of existing feature(s) - [x] New behavior ## Description ### Current: The maximum of returned results for...

> > Makes sense, do you think we can also add this? https://github.com/strawberry-graphql/strawberry/blob/main/strawberry/object_type.py#L152-L153 > > this should make it work slightly better with pyright > > does that work out...

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.18 to 1.26.19. Release notes Sourced from urllib3's releases. 1.26.19 🚀 urllib3 is fundraising for HTTP/2 support urllib3 is raising ~$40,000 USD to release HTTP/2 support and...

dependencies

## Describe the Bug/Feature How to exclude a field from a type? ```py @strawberry.type(name="File") class FileType(DjangoFileType): path: strawberry.Private[str] ``` **Current**: The `path` field still shows up in the schema. **Expected**:...

It would be awesome if strawberry would support [batched queries](https://www.apollographql.com/docs/react/api/link/apollo-link-batch-http/) I already spend some time into this and this is my very first working example The error handling is garbage...

## Feature Request Type - [ ] Core functionality - [x] Alteration (enhancement/optimization) of existing feature(s) - [ ] New behavior ## Description Python websockets library allows user to set...

Hi! I use default_factory to initialize my variable, but variable always returns the same result. It seems like default_factory doesn't work and it returns always the same result of function....

bug