Hello! I am trying to filter on dates using a _dbscan POST request.
Without using _dbscan, I would just add filters = "some conditions" & "some other conditions" (In my case filters=(equals(type,'configuration/entityTypes/Individuals')>(updatedTime, 1657743602003)
If I use _dbscan, I have to transfer my filters into the body of my request.
So (equals(type,'configuration/entityTypes/Individuals') becomes
{"type": "configuration/entityTypes/Individuals"}
I am trying to do the same thing for gt(updatedTime, 1657743602003)
How can I translate it into something that goes inside my json body? (And how can I also do it for et “lt” filter)
+ I also would like to add a filter max=100
Thanks in advance for your replies!