Alexander

Results 121 comments of Alexander

I have no permission to merge. What would you need to merge?

Anyway the PR is so old, that the project for which I required the PR is dead. Therefor I didn't developed the patch further but if you can tell me...

Working example code for simply transform recursive function in an "stack free" call tree: ```` python from functools import partial def _foo(level=0, *, get_result): if level > 100000: yield level...

thanks for the hint. Then only the first issue is valid. It isn't really much effort. Generators are a good way to save the current progress

> Hey there, it's best to report any particular issues with graphql-core in the corresponding repository. Please note that graphql core closely follows the reference implementation written in typescript in...

> What Erik wrote. Completely changing the execution or parsing logic is out of the scope of this project. > > If it really would be a significant improvement, consider...

> Maybe, instead of or in addition to `max_tokens`, there should be something like `max_level`? Is that something we should suggest? This solves a symptom and not the problem: Level...

Note: currently there is no use in having 200 level depths of recursion but this can change if someone abuses strawberry-django filters for building really big filters.

this is currently be done with the resolver and afterward is get_queryset of in my case ContentNode (the graphql pendant to Content) applied. What is the advantage of the new...