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
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: