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 e179030 commit 15ab859Copy full SHA for 15ab859
spring-graphql/src/main/java/org/springframework/graphql/data/ArgumentValue.java
@@ -112,6 +112,12 @@ public int hashCode() {
112
return result;
113
}
114
115
+ @Override
116
+ public String toString() {
117
+ String v = ((this.value != null) ? this.value.toString() : (this.omitted) ? "omitted" : "empty");
118
+ return "ArgumentValue[" + v + "]";
119
+ }
120
+
121
122
/**
123
* Static factory method for an argument value that was provided, even if
0 commit comments