Back to Strawberry

Schema codegen

docs/codegen/schema-codegen.md

0.315.3519 B
Original Source

Schema codegen

Strawberry supports code generation from SDL files.

Let's assume we have the following SDL file:

graphql
type Query {
  user: User
}

type User {
  id: ID!
  name: String!
}

by running the following command:

shell
strawberry schema-codegen schema.graphql

we'll get the following output:

python
import strawberry


@strawberry.type
class Query:
    user: User | None


@strawberry.type
class User:
    id: strawberry.ID
    name: str


schema = strawberry.Schema(query=Query)