Patrick Arminio

Results 162 issues of Patrick Arminio

```python import strawberry from strawberry.permission import BasePermission, PermissionExtension from typing import Any class IsAuthenticated(BasePermission): def has_permission(self, *arg: Any, **kwargs: Any) -> bool: return True @strawberry.type class ABC: @strawberry.mutation(name="hello") def hello(self)...

bug

Hi there 😊 I was looking at this PR on Strawberry: https://github.com/strawberry-graphql/strawberry/pull/3461 and I was wondering if there's a nicer to pass the input extensions data around, so I stumbled...

I notice that when a blockquote has an empty line it wouldn't be rendered properly, as it would be broken in two blockquotes, from: ``` > abc > > abc...

Hi there! I just tried to import a file and I got this error in the console: ``` plugin:tldraw:34238 Error migrating store Incompatible schema? migrateStoreSnapshot @ plugin:tldraw:34238 parseTldrawJsonFile @ plugin:tldraw:95305...

Closes #1929 Thanks @aryaniyaps for the help! ## Summary by Sourcery Fix typing of field decorators to return StrawberryField and improve type checking support. Bug Fixes: - Fix untyped decorator...

bot:release-type-patch
bot:has-release-file

Another attempt :D ## Summary by Sourcery Implement experimental incremental execution in the GraphQL schema to support deferred and streamed responses. Refactor the async run method to handle incremental execution...

## Description ## Types of Changes - [ ] Core - [ ] Bugfix - [ ] New feature - [ ] Enhancement/optimization - [ ] Documentation ## Issues Fixed...

## Description This PR allows to use enum values in generated enums. It is still WIP :) Also we should probably warn when users use enum values that aren't supported...