mayank_singh
4 years agoNew Contributor II
Compare the values of two documents
Hi,
I want to compare the values coming from Union Snap. I’ve two input views, both returning the count of documents. Using Filter, I want to check if the count from both sources is similar then ap...
- 4 years ago
Since they are separate objects, you have to find a way to combine them into one.
Instead of Union, you can use Join with the following configuration:
This will merge both objects into one, then you can easily check if countbefore is equal to countafter with the Filter:$['$countbefore'] == $['$countafter']
Or, you can use an inner Join instead of the combination with Join + Filter:
If their values are the same, there will be an output.