例如,我使用以下语句创建了一个名为“大写”的自定义指令。
GraphQLDirective upperCaseDirective = GraphQLDirective.newDirective()
.name("uppercase")
.description("Directs the executor to uppercase this field")
.validLocations(FRAGMENT_SPREAD, INLINE_FRAGMENT, FIELD)
.build();
如何向此“ upperCaseDirective”对象添加UPPER CASING的实际逻辑?