Hi all When inserting nested data, the type of the...
# community-help
j
Hi all When inserting nested data, the type of the nested objects are determined by the first occurence of said nested object. However if we insert an object with a float like
100.0
it is interpreted as an
int64
and not a
float
. Example:
Copy code
{
  "Id": "1",
  "ObjectField": "{\"DoubleValue\":624.0}"
},
The above will result in a field called
ObjectField.DoubleValue
with type
int64
. This is an issue, if subsequent objects have a decimal that is not
0
Is this intended behavior?