Add GraphQLTester

See gh-43
This commit is contained in:
Rossen Stoyanchev
2021-04-15 13:00:20 +01:00
parent 645cf21f17
commit e22d3e8ea4
8 changed files with 1568 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ public class RequestInput {
if (getOperationName() != null) {
map.put("operationName", getOperationName());
}
if (CollectionUtils.isEmpty(getVariables())) {
if (!CollectionUtils.isEmpty(getVariables())) {
map.put("variables", new LinkedHashMap<>(getVariables()));
}
return map;