You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 0.9.8, it appears if you want to make a mutation argument mandatory, you have to use @GraphQLNotNull. Any other annotation (like javax.annotation.Nonnull) is ignored.
@GraphQLMutation
public User getUser(@Nonnull String username) { //this should make username non-nullable
}
The text was updated successfully, but these errors were encountered:
In 0.9.8, it appears if you want to make a mutation argument mandatory, you have to use @GraphQLNotNull. Any other annotation (like javax.annotation.Nonnull) is ignored.
The text was updated successfully, but these errors were encountered: