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.
1 parent 2db4920 commit 695e639Copy full SHA for 695e639
src/GraphQL/StringExtensions.cs
@@ -57,7 +57,7 @@ public static Inputs ToInputs(this string json)
57
: new Inputs(dictionary);
58
}
59
60
- private static Dictionary<string, object> ToDictionary(this string json)
+ public static Dictionary<string, object> ToDictionary(this string json)
61
{
62
var values = JsonConvert.DeserializeObject(json,
63
new JsonSerializerSettings
@@ -78,7 +78,7 @@ public static string ToCamelCase(this string s)
78
return $"{char.ToLowerInvariant(s[0])}{s.Substring(1)}";
79
80
81
- private static object GetValue(object value)
+ public static object GetValue(object value)
82
83
var objectValue = value as JObject;
84
if (objectValue != null)
0 commit comments