[proxy] strawberry.rocks← back | site home | direct (HTTPS) ↗ | proxy home | ◑ dark◐ light

Strawberry is a developer friendly GraphQL library for Python, designed for modern development.

Get Started
import strawberry
@strawberry.type
class Song:
id: strawberry.ID
title: str
@strawberry.type
class Query:
@strawberry.field
def song(self, id: strawberry.ID) -> Song:
return Song(id=id, title="Strawberry Fields Forever")

Modern Python, modern features

Become a sponsor