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

Would it be possible to reload the schema at runtime? ## Feature Request Type - [ ] Core functionality - [x] Alteration (enhancement/optimization) of existing feature(s) - [ ] New...

## Feature Request Type - [ ] Core functionality - [x] Alteration (enhancement/optimization) of existing feature(s) - [ ] New behavior ## Description My understanding is that the code generation...

Just summarising the discussion around how we can approach `info` and `root`/`self` params in resolvers. Other than the potential `root`/`self` confusion (which we can discuss again in another issue), we...

discussion

We got this bug report on our docs page: > Cannot get this to run on Windows. When I issue the 'strawberry server schema' command in git bash, it just...

bug
windows

When running `strawberry export-schema core.schema:schema` in a django project, we get this error: ``` django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable...

bug
good first issue
area: django

This issue is a follow up / postmortem on PR #1594 Considering this PR has been unmerged and blocked by dependency hell since January, and no one has been able...

Once https://github.com/python-poetry/poetry/blob/master/CHANGELOG.md#120a1---2021-05-21 is stable, we should research for poetry plugins to run tests with `poetry run tests` to get them as native commands

Strawberry cannot process a type of Union[strawberry_interface, strawberry_type] ## System Information Macos, latest strawberry (0.111.2 at the moment) ## Additional Context Sample code: ``` python from typing import Union import...

bug

this: ``` @strawberry.field def my_resolver(self, id_: strawberry.ID) -> ...: ... ``` should change the `id_` name to be `id` on the schema.

enhancement

Add a plugin to the [codegen feature](https://strawberry.rocks/docs/codegen/query-codegen) so that we can turns queries into pydantic models. and then convert it to the strawberry type with the decorator. ## Feature Request...

feature-request