Closed
Description
Not sure if this is intended or not but shouldn't the context be taken outside the message processing?
In base.py:
def execute(self, request_context, params):
return graphql(
self.schema, **dict(params, allow_subscriptions=True))
Should be:
self.schema, **dict(params, context_value= request_context, allow_subscriptions=True))
Otherwise, how can you pass the request_context
? Does it make sense to be per message? Or is it intended for another use?
Metadata
Metadata
Assignees
Labels
No labels