我有一个SpringBoot和Graphql工具webapp。该工具会扫描graphql解析器类,并从方法中找到所有graphql端点。
是否有一种手动添加return Column(
children: <Widget>[
Row(
children: <Widget>[
Checkbox(
value: inputElement.checkBoxValue,
onChanged: (bool newValue) {
setState(() {
contextData.data[dataArrayPosition].element[elementCurrentPosition].input[inputCurrentPosition].checkBoxValue = newValue;
});
}),
Text(inputElement.labelForValue),
],
),
],
);
的方法,所以我不必编写解析器方法?在99%的情况下,它们只是对服务的虚拟委托调用。