Skip to content

Instantly share code, notes, and snippets.

@aSemy
Last active June 1, 2018 08:58
Show Gist options
  • Save aSemy/1c00189dad58bfcef757129c90324562 to your computer and use it in GitHub Desktop.
Save aSemy/1c00189dad58bfcef757129c90324562 to your computer and use it in GitHub Desktop.
public static Set<Rule> getRules(final GraphQLRuleService ruleService) {
final Set<Rule> rules = new HashSet<>();
// validate name not blank
rules.add(ruleService.stringNonBlank(UserRegisterMutator.REGISTER_ARGUMENT_NAME, "name"));
return rules;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment