Alexander Schepanovski

Results 219 comments of Alexander Schepanovski

Looks like the issue is that `JSONField` overwrites `.db_type()` method and `EncryptedMixin` does not. This monkey-patch fixed it for me: ```python EncryptedMixin.db_type = models.Field.db_type ```

I guess you should pass a non-default executor to the view: ```python from graphql.execution.executors.asyncio import AsyncioExecutor graphql_view = GraphQLView.as_view(executor=AsyncioExecutor()) ```

Apparently setting executor doesn't work. It would be nice to have this since Django 3.1 already have async views.

So there is no advised way to do that?

Is it possible to mix sync and async resolvers this way?

I meant if one has 100 sync resolvers already and only wants to add a few async ones, how should one proceed? Even if front-end guarantees to not mix sync...

Yeah, that works. Links stopped to be highlighted though.

I use links, which are really bookmarks not links, like this: ``` html ``` And they are not highlighted.

This is outside table. Links in table are highlighted.