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
Most importantly, I think we do not yet support wrapper directives (and constraints directives via bean validation). I have started to work on the feature, but it will take some time to implement.
For #1366, the problem was that if the type argument contained @NonNull, every wrapper was non-null.
See:
if (wrapper != null && wrapper.isCollectionOrArrayOrMap()) {
List<Set<Collection<@NonNull Integer>>> => [[[Int!]!]!]! List<Set<@NonNull Collection<Integer>>> => [[[Int]]]
I might have fixed the issue locally, but I still need to test it...
If I have a class like this:
I get a schema like this:
For the type of the list, the constraint is not in the schema. Constraints for the list like max/min length do work.
The text was updated successfully, but these errors were encountered: