We don't have an LSP for Strawberry Django, but in case we add one I think this feature would be neat to have.
We allow to use fields="__all__"
, which might lead to security issues, so the LSP could warn when using that, and also provide a code action that does what __all__
does, but with code
From this:
@strawberry.django.type(models.Flyer, fields="__all__")
class Flyer:
...
To this:
@strawberry.django.type(models.Flyer)
class Flyer:
id: auto
title: auto
We could also add code action to expose additional fields :)
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too