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
-
Hi everyone!
I'm migrating from version
10.5.5
to11.3.8
and while converting aIDiagnosticObserver
toDiagnosticEventListener
I found out that theIRequestContext.Request.VariableValues
does not return the same dictionary as in v10.With v10 if the graphql query had this variables
at runtime
Request.VariableValues
would beWith v11
Request.VariableValues
instead 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