We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d1f543 + bc098b5 commit becaee3Copy full SHA for becaee3
src/GraphQL.Client.Serializer.Newtonsoft/MapConverter.cs
@@ -51,9 +51,9 @@ private TDictionary ReadDictionary<TDictionary>(JToken element) where TDictionar
51
return result;
52
}
53
54
- private IEnumerable<object> ReadArray(JToken element)
+ private IEnumerable<object> ReadArray(JArray element)
55
{
56
- foreach (var item in element.Values())
+ foreach (var item in element)
57
58
if (IsUnsupportedJTokenType(item.Type))
59
continue;
0 commit comments