Doctor
Doctor
@mpounsett I don't mind having someone to take a look at my past/future commits or contribute to the passlib As for PEP541 request it may be worth trying out at...
I reached to Eli by their work email that they have on project's PyPi page, since that's the only email I was able to find. If I've read PEP correctly...
> Is there anything holding this PR up? No, but I'm not quite sure if we need to bring in `packaging` as an extra dependency, and why simply checking if...
I think there are several ways to share/store the diagram: 1. Using a base64 representation to share it via url. This is probably not a good option since schema representation...
@ThinLinc-Zeijlon Would you want to migrate to a package manager (e.g. uv) as well? Most "modern" tool combination would look something like this: - Package Manager: uv - Linter/Formatter: ruff...
Are you using sqlalchemy dataclasses integration and wrapping it in a `strawberry.type`? I'd still have two separate models here 🤔
Your database model and graphql schema are different entities and shouldn't directly depend on each other 🤔 It's easy for an opposite situation to occur: You can add a private...
Here's an example, but it's a bit outdated: https://gitlab.com/manga-microservices/manga/-/blob/main/src/gql/modules/manga/types.py
For relationship cascades to work your related entities should be loaded first You might want to confidure `on delete` on your foreign keys for db-level cascades https://docs.sqlalchemy.org/en/14/core/constraints.html#sqlalchemy.schema.ForeignKey.params.ondelete ```python async def...
Your data integrity should be handled on DB side as much as possible 😉