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

## Description This PR adds a new `fragments` property to `Info`, which lets you access which fragments were queried for without having to go through `_raw_info`. ## Types of Changes...

bot:has-release-file
bot:release-type-minor

## Description Previously the narrowed type of a generic interface was not checked. Therefore, the first concrete type of the generic interface would always return `True` from the `is_type_of` method....

- feat: initial rustberry integration - feat: initial rustberry integration ## Description ## Types of Changes - [ ] Core - [ ] Bugfix - [ ] New feature -...

This PR adds support for setting cookies in integrations that use a `TemporalResponse` in their context, e.g.: * Sanic * Chalice * Channels ## Description For Channels, I had to...

bot:has-release-file

Subscriptions are now executed like queries and mutations, and extension hooks are called. Result extension hooks are called for each result yielded by the subscription Note, This is a separate...

bot:has-release-file
bot:release-type-minor

The Stellate extension for Strawberry needs some information from the request: https://github.com/StellateHQ/stellate-strawberry/blob/9a2305789b1d9cd8c3ce8326e194635bb73fffbe/stellate_strawberry/__init__.py#L66-L82 but I'm not totally sure it will work with all integrations, so I was wondering if we could...

feature-request

What is `self.execution_context.errors` on an extension, is it needed? (we have errors on the result) Related: https://github.com/StellateHQ/stellate-strawberry/pull/6 ## Upvote & Fund - We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and...

Based on Discord discussion here: https://discord.com/channels/689806334337482765/1225406859926704188 Basically I have a type which derives from another. I want to exclude a field in my derived type. Marking as strawberry.Private in the...

bug

Today when you have a type created from a pydantic model, you can convert it back to pydantic, but not it's fields ## Describe the Bug I made this example...

bug

```python class User(pydantic.BaseModel): age: int password: Optional[str] @strawberry.experimental.pydantic.type(User) class UserType: age: strawberry.auto | None ``` ## Upvote & Fund - We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and help fund...

feature-request