We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
It would be quite useful if there would a possibility to change the type of the contexts. So, currently if you have following query:
val dataInputType: ObjectType[AlternativeContext, Data] = ??? fields[Context, Unit]( Field( name = "getData", fieldType = dataInputType, resolve = c => { val fetchSomeData = ??? UpdateCtx(fetchSomeData)(data => AlternativeContext(data)) } ) )
It would not compile, because you have to use Context
Context
The strange thing is that dataInputType depends on AlternativeContext, yet you still need to adhere to Context
AlternativeContext
Basically, what I want to achieve is to reduce the contexts size during downstream flow
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
It would be quite useful if there would a possibility to change the type of the contexts.
So, currently if you have following query:
It would not compile, because you have to use
Context
The strange thing is that dataInputType depends on
AlternativeContext
, yet you still need to adhere toContext
Basically, what I want to achieve is to reduce the contexts size during downstream flow
The text was updated successfully, but these errors were encountered: