You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you provide us the models, the query, info context and error stack? Feel free to make a zip of the files or something as it would make the life easier to reproduce.
I had this issue when passing through a queryset whose model queried DB fields in its __init__ method–the fix was just to move that code elsewhere. I wonder if it's something that could be guarded against.
I just encountered this issue. Similar to what @tpict said, there was a model.signals.post_init setup which uses the DB model field values. I don't want to change the setup of the model if possible so I'm wondering if there's a way to guard it.
When I call
gql_optimizer.query(myquery, info)
it always raisesRecursionError
not matter witch query I pass in.Python 3.7
Django 2.2.7
Graphene-Django 2.6.0
I tried with 0.6.0 and 0.6.1
The text was updated successfully, but these errors were encountered: