According to neo4j-datatypes properties have primitive data types.
How can I define the data type when I create properties. For exmple in following query, how can I define the property "age" as a "short" data-type explicitly?
MATCH (e:Employee) SET e.age = 55
What is the default data type of age as per above query?