I had to change graphqlview.py at line 155 as follows ```python exec_res = ( [ex if ex is None or isinstance(ex, ExecutionResult) else await ex for ex in execution_results] if self.enable_async else execution_results ) ``` **from** ```python exec_res = ( [await ex for ex in execution_results] if self.enable_async else execution_results ) ```