Hey, I’m trying to filter this Event:Get with “creationDate”.
Is it possible to build this query like this?
Query:
{
"$and": [
{
"experienceUserId": {
"$eq": "{{experience.userId}}"
}
},
{
"state": {
"$eq": "new"
}
},
{
"creationDate": {
"$gte": "12-05-2024"
}
},
{
"$or": [
{
"level": {
"$eq": "error"
}
},
{
"level": {
"$eq": "critical"
}
}
]
}
]
}