what should be the data-type/field-type for utc_da...
# community-help
a
what should be the data-type/field-type for utc_datetime field ?
j
It should be
int64
a
Gotcha. And
uuid
fileds should be
string
?
Thanks @Jason Bosco
👍 1
j
That’s right
ty 1
a
What should be the type of
null
?
or we must need to convert them string or some number based on the type ?
j
If a field can have a null value, you want to set it to
optional: true
ty 1
♥️ 1
If you want to filter by null values, then I’d recommend adding a new booelan field called say
is_field_x_null: true | false
a
Got it