Hi, in the migration to a self hosted server Iāve noticed an issue, a different behavior by how itās currently working in the moralis instance.
I created a stream for an event sync from a contract. The type of a field of the event is āboolā in the event signature, but when the table is created (when the event is triggered) the column is created not as Boolean but as String.
This impacted the behavior of the cloud functions (e.g. equalTo(āfieldā, true) is no more working because it doesnāt recognize the field as Boolean.
Why is happening that? The contract field type is a boolean, Iād expect to have in the database column a Boolean type, not a String.
A change in beforeSave or afterSave could solve, yes, but it would be another change required to the logic and I would like to avoid it.