Patrick Arminio
Patrick Arminio
## What is this Python project? Strawberry is a library to create GraphQL APIs using python by adopting a syntax similar to dataclasses and making use of type hints ##...
Hi all, I get this error when installing django-faker: ``` Step 19 : RUN pip install -r requirements.txt ---> Running in 82fdb2379bfe Downloading/unpacking Django (from -r requirements.txt (line 1)) Downloading/unpacking...
This is going to land in the next version of create react app, would be nice to have it here as well :) https://github.com/facebook/create-react-app/pull/3909/files
Closes #269 See: https://github.com/facebook/create-react-app/pull/3909
This PR will provide better e2e tests (so to actually check if TypeScript files are being loaded) and should also fix the failure with #270
I've opened a discussion on this, but I think it might be worth making an issue related to authentication. I'd say we can split this work into multiple chunks, but...
We only have documentation for schema directives, we should document query directives, here's an example of how they work: https://github.com/strawberry-graphql/strawberry/blob/main/tests/schema/test_directives.py
The following snippets ```python @strawberry.input class AddBookInput: title: str author: Annotated[str, "PII"] ``` Raises the following error when used in a schema: ``` TypeError: AddBookInput fields cannot be resolved. Unexpected...
https://github.com/apollographql/apollo-cache-control [deprecated] https://www.apollographql.com/docs/apollo-server/performance/caching/ Caching in GraphQL is not super easy, we might add some utilities for it :)
In #2054 we've added support for printing schema directives on the schema, while doing that we found some naming issues, currently we use a `directives` parameters on the following functions/classes:...