ArcadeDB Version: v23.1.2 (build 9dbe3ce/1675373316135/main)
JDK Version: openjdk 11.0.18 2023-01-17
OS: MacOS 12.6
Custom attributes of type boolean (and probably other types too) assigned to properties (and probably types too) from the console are converted to string. From studio / http it works as expected.
Expected behavior
Custom attribute assigned is of type boolean
Actual behavior
Custom attribute assigned is of type string
Steps to reproduce
From console:
CREATE DOCUMENT TYPE doc;
CREATE PROPERTY doc.prop STRING;
ALTER PROPERTY doc.prop CUSTOM test = true;