Alexander

Results 81 issues of Alexander

**Checklist** - [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation - [x] I looked for similar issues in the [issue tracker](https://github.com/schemathesis/schemathesis/issues) **Describe the bug** There are multiple problems with...

Priority: Medium
Type: Bug
Python: ASGI
Status: Needs more info

## Description Currently it is not always possible to use the default and default_factory argument on strawberry.field. It fails randomly and especially on root Query This PR fixes the issue....

## Describe the Bug Here a code example ```` python @strawberry.type class Sub: @strawberry.field def foo(self) -> str: return "bar" @strawberry.type class Query: sub: Sub = strawberry.field(default_factory=Sub) schema = strawberry.Schema(query=Query)...

bug

## Description Quite simple solution for a nasty bug: because a default or default_factory is missing, dataclasses requires for relay.node annotations on subtypes (see bugreport) a value. The reason why...

Consider the code ```python @strawberry.type class Sub: node: relay.Node = relay.node() nodes: list[relay.Node] = relay.node() @strawberry.type class Query: @strawberry.field @staticmethod def sub(): return Sub schema = Schema(query=Query) ``` This code...

bug

graphql-language-service-interface is now deprecated, the way to go is to use graphql-language-service as all of the subpackages are merged into it. see deprecation message

Debian bookworm was released. It would be nice to have a new image based on it.

aiohttp has out of the box websocket support. So it should be easy to integrate in the transport.

type: feature

When a lookup is detected, ignore null values. This PR is a bit conservative and also ignores UNSET but this is most probably not necessary. This prevents django errors for...