I don't think it is possible to do it with a mongo query. This query would require to look at two documents at a time - which as far as I know is not possible today and might not be possible to implement efficiently ever (because if you use sharding the documents of a single collection might be distributed across different machines).
This looks complicated to achieve even in SQL - maybe it can achieved using a self join.
If you find something difficult to query it might be an indication that your model is not right. It would be good idea to investigate if a different way of modeling the schema, before jumping to do it using javascript.