I defined an input object with a HashMap as default value. Introspection on the default value gives the toString() value of the HashMap (see graphql.introspection#__InputValue). However, GraphQL specification requires the string to be encoded using GraphQL language.
As a result, GraphiQL would fail because of the incorrect introspection result.
I defined an input object with a
HashMapas default value. Introspection on the default value gives thetoString()value of theHashMap(seegraphql.introspection#__InputValue). However, GraphQL specification requires the string to be encoded using GraphQL language.As a result, GraphiQL would fail because of the incorrect introspection result.