A. Coady

Results 8 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

### What do you want to change? The `Querier` interface currently looks like: ```go func (q *Queries) Example(ctx context.Context, arg ExampleParams) error { _, err := q.db.Exec(ctx, example, arg.Field1, arg.Field2)...

enhancement
:books: postgresql

## Describe the Bug ```python import asyncio import strawberry from strawberry.extensions import tracing @strawberry.type class Query: @strawberry.field def node(self) -> str: return '' schema = strawberry.Schema(Query, extensions=[tracing.ApolloTracingExtension]) for i in...

bug

Follow-up to #20, subscriptions (i.e. long-lived requests) typically want a more flexible caching policy. Not caching errors which may be transient is a common use case. ```go func WithCacheErrors(b bool)...

Comment lines in git are configurable, but appear to be hard-coded to # in stgit. New patches append ``` # Please enter the message for your patch. Lines starting with...