Hi all. A silly question. I have the below searchresult (in my application i'm printing logs for different processing status of a specific order: I would like to know if (and how) would it be possible to extract the number of orders for which i do have a "processStarted" log, and not an "orderSaved" one. And another query to extract the orderNumbers for these case. orderNumber action 123 processStarted 123 orderSaved 125 processStarted 125 orderSaved 301 processStarted As per the above example, i would like 1) a query to extract the count (1 in this case, since only order 301 don't have an "orderSaved" entry) 2) a query to extract the orderNumbers for which i do have "processStarted", but not "orderSaved"). Only 301 in this case Which operation you would suggest me to investigate? Can you point me to some examples?
... View more