Is it possible to have IRequestContext.Request.VariableValues in v11 the same type as in v10?
#4533
Unanswered
devmatteini
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone!
I'm migrating from version
10.5.5to11.3.8and while converting aIDiagnosticObservertoDiagnosticEventListenerI found out that theIRequestContext.Request.VariableValuesdoes not return the same dictionary as in v10.With v10 if the graphql query had this variables
{ "user": { "name": "foo", "lastName": "bar" } }at runtime
Request.VariableValueswould beWith v11
Request.VariableValuesinstead is aDictionary<string, IValueNode>.Is it possible to convert
Dictionary<string, IValueNode>to the same type as in v10?Beta Was this translation helpful? Give feedback.
All reactions