Sascha Metz

Results 5 comments of Sascha Metz

@luabud Thanks for the tip with Pylance. I had an issue with the latest update that marked all imports as "unresolved import". After installing the extension it works.

You should use a newer python version (>= 3.5). If you already have python 3 installed this command may work: ``` python3 -m pip install -r requirements.txt ```

Thank you for the example. It works perfectly 👍 I have extended it for the other methods: ```js const mutationMethods = ["post", "put", "patch", "delete"]; Object.values(context.openAPIDocument.paths).map((path) => { if (path.get)...

This would be a great addition. Same issue with mutation arguments: ```python @strawberry.mutation def order_create(input: OrderCreateInput) -> ...: ... ``` `input` is often used for mutations, which conflicts with Python's...

Great contribution. Just tested it and it works. One thing I've noticed is that if you use two fields in a GraphQL query that are using annotations with aggregations at...