A. Coady

Results 4 issues of A. Coady

## Describe the Bug Generic types follow a naming convention of prepending the variable name to the type name. But when the variable is a builtin scalar, it's using the...

bug

Fields maintain their original schema order in both the docs and the autocomplete suggestions (#884). But arguments are sorted alphabetically. As with fields, although the order doesn't matter functionally it...

enhancement

An alternative proposal for the often requested (#476, #542) ability to distinguish optional inputs from nullable inputs. It doesn't propose any change to core GraphQL, just conventions and directives. It...

## Describe the Bug When a generic type is passed to `Schema(types=[...])` an error is raised. ```python from typing import Generic, TypeVar import strawberry T = TypeVar("T") @strawberry.type class Node(Generic[T]):...

bug