Patrick Arminio

Results 669 comments of Patrick Arminio

@erikwrede this is for **operation** directives 😊

@omarzouk do you have an example on how you'd use this? it will be useful for me for writing the tests 😊

thanks! this might be a good time to refactor some parts of accessing the context. Ref #1258 #2687 How urgent is this?

@omarzouk I think we can make it happen, just to clarify, you want to be able to update value of extensions from a resolver, something like: ```python @strawberry.type class Mutation:...

@aryarm as a work around I did this: ``` session._session.install(f"django=={django}") ```

@aryarm `session._session.install(f"django=={django}")` uses nox install command (which is just `pip install ...`) while `session.install` from nox-poetry uses `pip --constraints ... install ...` which will use the lock file (if I...

@cpsnowden I think we should maybe disallow passing extension instances, you should this: ```diff schema = strawberry.Schema( Query, extensions=[ - MaskErrors(), + MaskErrors, ], ) ``` Another example: https://play.strawberry.rocks/?gist=786de658feb0675bd220bf8a6f904b98

@sbdchd here's an example of custom manager: https://testdriven.io/blog/django-custom-user-model/#model-manager

@chrysle just to clarify, I don't think `pipx` is doing anything wrong, I was just thinking if there's a way to make the experience better in some cases 😊 This...