-
```
import strawberry
from typing import Optional, Generic, TypeVar, List
from strawberry.scalars import JSON
GenericType = TypeVar("GenericType")
@strawberry.interface
class BlockInterface:…
-
## Describe the Bug
An example speaks a thousand words. Given the following minimal test case:
```python
import strawberry
from django.test import SimpleTestCase
@strawberry.type
class E…
-
Currently, when a filter is created for a single object, "pk" is used as the ID name. There is no possibility to specify an alternative name.
## Feature Request Type
- Change (enhancement/optimi…
-
I don't know if this has been said enough @bellini666, but the Django integration and especially the query optimizer are an amazingly well implemented. Just had the issue of debugging N+1 query prob…
-
## Describe the Bug
The "Share" button on https://play.strawberry.rocks/ is currently broken:
1. Click the button
2. Observe "Loading..." prompt
3. BUG: finishes loading but link box…
huonw updated
6 months ago
-
### Additional comment:
_No response_
-
## Upvote & Fund
- We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and help fund this issue.
- We receive the funding once the issue is completed & confirmed by…
-
I have a custom Account in my app, when we started the project we didn't needed a "username", we just wanted email addresses.
```
#Account Model
class Account(AbstractUser, PermissionsMixin):
…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Describe the bug
When using the StrawberryShake GraphQL libraries, I'm unable to build my service as a docker …
-
When implementing types that override the `get_queryset()` method as well as using relay connection, the `get_queryset()` method is called twice. This has the result, that when applying filters to…