Appending to context variable with requestDidStart

Hi,

I was wondering if it was possible to update/append fields to the request context variable so that it is accessible through middlewares and resolvers when using requestDidStart.

The reason I am asking, is because in my project, I need to do some work before the Datasources initialization is made.

I had code previoulsy inside

	context: ({
		req,
	}) => ({

But I wanted to make it cleaner so I tried to remove it from there but it doesn’t work.
Any help is appreciated, thanks.