-
## Describe the Bug
```python
@strawberry_django.connection(strawberry.relay.ListConnection[graphql_models.FooModel])
def connection_test(self, foo_bar_arg: int) -> Iterable[graphql_models.FooModel…
-
## Describe the Bug
When using strawberry_django.field with resolve in this style,
```python
def resolver(root: "FruitType") -> str:
return f"{root.id} - {root.name}"
@strawbe…
-
In Strawberry's pydantic extension we have support `all_fields`. I think we should add it for strawberry django too :)
https://strawberry.rocks/docs/integrations/pydantic#pydantic-support
## Upvo…
-
Thanks for this great project.
I want to use it to add GraphQL support...but I need to support a graphQL query that implements a let's say `someSpecificABCQuery` query that has a shape like:
```…
-
Hey team. Thanks a lot for all the hard work merging `strawberry-django-plus` into `strawberry-graphql-django`!
I've been going through the upgrade and I've found that no calls to `get_queryset` ar…
-
Rather a question than an issue:
Is there a way to split up the Query object across different django apps and create the central Query by inheriting from the app-specific ones in a similar fashion as…
-
I've setup Strawberry django for a Company model, and created types, input types, queries via relay and mutations.
Also, I've setup the `MAP_AUTO_ID_AS_GLOBAL_ID: True` setting.
When I look at the…
-
## Using JSON type lead to: `TypeError: Object of type datetime is not JSON serializable`
## Describe the Bug
I have a resolver which need to return dictionaries which are not per-defined (…
-
## Describe the Bug
Trying to inherit a Strawberry Django Type that uses `auto` in an interface causes an `Unexpected type 'typing.Any'` error.
For example:
```py
@strawberry.django.type(MyModel…
-
when I do something like this:
```python
@strawberry.type
class Query:
blog_page: BlogPage = strawberry.django.field()
```
I get this schema back:
```graphql
type Query {
blogPa…