Hi all, just a small one:
The line
|
operationName=request_data.operation_name, |
creates the context with
operationName but the template
|
operationName: {{operation_name}}, |
expects
operation_name. Probably
request_data.to_template_context() is meant to be used which does use
operation_name:
|
"operation_name": tojson(self.operation_name), |
Thanks!