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 31a6ded commit f1c10e5Copy full SHA for f1c10e5
handler.go
@@ -40,7 +40,7 @@ func getFromForm(values url.Values) *RequestOptions {
40
query := values.Get("query")
41
if query != "" {
42
// get variables map
43
- variables := make(map[string]interface{})
+ variables := make(map[string]interface{}, len(values))
44
variablesStr := values.Get("variables")
45
json.Unmarshal([]byte(variablesStr), &variables)
46
0 commit comments