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

We have a guide for federation but we don't really list all the options we have for fields and types. We should do that. Also for API docs see: #1872

When using the pydantic converter, or even a `@strawberry.type` dataclass, all snake_case variable names are automatically converted to camelCase values. For example ```python from datetime import datetime from typing import...

docs

Currently, strawberry is one repo and deployment on PyPI including - Schema generation - including cross-definition support with [`pydantic`](https://pydantic-docs.helpmanual.io/) - Resolver mapping - Dev Server - GraphiQL IDE/Testing - CLI...

discussion

As discussed here: https://github.com/strawberry-graphql/strawberry/pull/1321#discussion_r726507452 tldr: - Emoji's do not work by default on Windows - https://github.com/willmcgugan/rich provides a cross platform way of interacting with terminals - Eval it, see if...

enhancement

It would be nice to have a command to convert an SDL to strawberry types, something like: ```gql type User { name: String! } type Query { user: User }...

enhancement
help wanted
good first issue

I was a bit surprised that the following code snippet prints `{'userType': 'BLAH'}` instead of `{'userType': 'c'}` ```python from enum import Enum import graphql import strawberry @strawberry.type class User: @strawberry.enum...

discussion

At present, how to limit the maximum number of pieces of data returned at a time from the global settings, or it is best to indicate the maximum number of...

Is there a good way to use strawberry graphql server as a proxy for another graphql server (e.g. appsync)? I would like to simply pass the query received by strawberry...

Attempt to improves performance by compiling resolver functions to prevent conditional look-up of arguments. In the future, this implementation could be extended to also compile scalar converters, as their type...

Framework: sanic Is there any way to get the name and type of the uploaded file? We are currently using this implementation: ``` for _, file_list in info.context.req.files.items(): file_name =...