What is the expected behaviour of a Criteria of a DateTime field where the operator is set to Equals and the Value set to "Today"?
Should it match every DateTime value for the entire day?
So a Filter/Criteria such as this where createdOn is a DateTime field:
Should it match every DateTime value for the entire day?
So a Filter/Criteria such as this where createdOn is a DateTime field:
Code:
"criteria":[
{
"fieldName":"createdOn",
"operator":"equals",
"value":{
"_constructor":"RelativeDate",
"value":"$today"
}
}
]