San Kilkis
San Kilkis
Not sure if this works for your use case, but have you seen the reload option of [uvicorn](https://www.uvicorn.org/settings/#development) already?
@saschametz please have a look at https://github.com/strawberry-graphql/strawberry/issues/725. This should be supported already 😊
@patrick91 @bellini666 @BryceBeagle another area we can gain a tiny bit of performance. This is low priority, but I wanted to make this draft PR so we keep it in...
@patrick91 based on your reply in the Discord, I think resolver arguments could also be added to this list. The following is quite handy to know: ```python def resolver(python_name_argument: Annotated[str,...
Based on https://github.com/strawberry-graphql/strawberry/issues/1879#issuecomment-1170782910 `LazyType` should be added to the list above as a way to deal with circular dependencies 😊
@nschloe the main use-case I have in mind would be to reject a PR if a bibliography file wasn't run through betterbib before a commit. What do you think?
It's not a bug it's a feature 😂 Let's see if anyone else has a use for this feature request, otherwise I can implement the desired functionality with a diff...
@JensHeinrich that's a great suggestion! `pre-commit` would work well for this 🎉
@patrick91 I've pushed PR #1853 as a proof of concept. This PR extends #1666 with commit [`9e76389`](https://github.com/strawberry-graphql/strawberry/pull/1853/commits/9e76389d5a45c48a8e42ec4c0a1a718c47ec7e11). The compilation happens in `resolver.py` and is implemented as follows: ```python INFO_ARG =...
@bellini666 thanks for your in-depth write-up and the performance benchmarks! I like you approach of adding type-annotations to the contextvars as well! For completeness, I added an approximation of the...