Strawberry-graphql

Latest version: v0.263.0

Safety actively analyzes 724051 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 133

0.241.0

Not secure
--------------------

You can now configure your schemas to provide a custom subclass of
`strawberry.types.Info` to your types and queries.

py
import strawberry
from strawberry.schema.config import StrawberryConfig

from .models import ProductModel


class CustomInfo(strawberry.Info):
property
def selected_group_id(self) -> int | None:
"""Get the ID of the group you're logged in as."""
return self.context["request"].headers.get("Group-ID")


strawberry.type
class Group:
id: strawberry.ID
name: str


strawberry.type
class User:
id: strawberry.ID
name: str
group: Group


strawberry.type
class Query:
strawberry.field
def user(self, id: strawberry.ID, info: CustomInfo) -> Product:
kwargs = {"id": id, "name": ...}

if info.selected_group_id is not None:
Get information about the group you're a part of, if
available.
kwargs["group"] = ...

return User(**kwargs)


schema = strawberry.Schema(
Query,
config=StrawberryConfig(info_class=CustomInfo),
)


Contributed by [Ethan Henderson](https://github.com/parafoxia) via [PR #3592](https://github.com/strawberry-graphql/strawberry/pull/3592/)

0.240.4

Not secure
--------------------

This release fixes how we check for multipart subscriptions to be
in line with the latest changes in the spec.

Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #3627](https://github.com/strawberry-graphql/strawberry/pull/3627/)

0.240.3

Not secure
--------------------

This release fixes an issue that prevented extensions to receive the result from
the execution context when executing operations in async.

Contributed by [ניר](https://github.com/nrbnlulu) via [PR #3629](https://github.com/strawberry-graphql/strawberry/pull/3629/)

0.240.2

Not secure
--------------------

This release updates how we check for GraphQL core's version to remove a
dependency on the `packaging` package.

Contributed by [Nicholas Bollweg](https://github.com/bollwyvl) via [PR #3622](https://github.com/strawberry-graphql/strawberry/pull/3622/)

0.240.1

Not secure
--------------------

This release adds support for Python 3.13 (which will be out soon!)

Contributed by [Patrick Arminio](https://github.com/patrick91) via [PR #3510](https://github.com/strawberry-graphql/strawberry/pull/3510/)

0.240.0

Not secure
--------------------

This release adds support for schema-extensions in subscriptions.

Here's a small example of how to use them (they work the same way as query and
mutation extensions):

python
import asyncio
from typing import AsyncIterator

import strawberry
from strawberry.extensions.base_extension import SchemaExtension


strawberry.type
class Subscription:
strawberry.subscription
async def notifications(self, info: strawberry.Info) -> AsyncIterator[str]:
for _ in range(3):
yield "Hello"


class MyExtension(SchemaExtension):
async def on_operation(self):
This would run when the subscription starts
print("Subscription started")
yield
The subscription has ended
print("Subscription ended")


schema = strawberry.Schema(
query=Query, subscription=Subscription, extensions=[MyExtension]
)


Contributed by [ניר](https://github.com/nrbnlulu) via [PR #3554](https://github.com/strawberry-graphql/strawberry/pull/3554/)

Page 11 of 133

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.