Sometimes it is desirable to parse JSON properties as NULL if they do not exist, Mechnet could support nullables as follows:
entity Person {
age:int?,
}
Where the ? specifies that the value is nullable, which would produce an entity with a generated age property of type Integer rather than int where Integer can be null
Sometimes it is desirable to parse JSON properties as NULL if they do not exist, Mechnet could support nullables as follows:
entity Person { age:int?, }
Where the ? specifies that the value is nullable, which would produce an entity with a generated age property of type Integer rather than int where Integer can be null