graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPIntPropertyInput.java [69:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void updateType(final PropertyType type) {
        if (type == null) {
            return;
        }
        super.updateType(type);
        type.setDefaultValue(defaultValue != null ? defaultValue.toString() : null);
        if (minValue != null || maxValue != null) {
            final Double from = minValue != null ? minValue.doubleValue() : null;
            final Double to = maxValue != null && (minValue == null || maxValue >= minValue) ? maxValue.doubleValue() : null;
            updateDefaultNumericRange(type, from, to);
        } else {
            deleteDefaultNumericRange(type);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/property/CDPLongPropertyInput.java [69:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void updateType(final PropertyType type) {
        if (type == null) {
            return;
        }
        super.updateType(type);
        type.setDefaultValue(defaultValue != null ? defaultValue.toString() : null);
        if (minValue != null || maxValue != null) {
            final Double from = minValue != null ? minValue.doubleValue() : null;
            final Double to = maxValue != null && (minValue == null || maxValue >= minValue) ? maxValue.doubleValue() : null;
            updateDefaultNumericRange(type, from, to);
        } else {
            deleteDefaultNumericRange(type);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



