-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rishabh Singh
authored
Apr 13, 2022
1 parent
a6c55e1
commit ef9124f
Showing
6 changed files
with
297 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
document-store/src/integrationTest/resources/mongo/unwind_filter_response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
[ | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "online", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "retail", | ||
"volume": 500 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 3000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "online", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "retail", | ||
"volume": 500 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Mirror", | ||
"sales": { | ||
"city": "delhi" | ||
} | ||
} | ||
] |
133 changes: 133 additions & 0 deletions
133
document-store/src/integrationTest/resources/mongo/unwind_response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
[ | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "pune", | ||
"medium": { | ||
"type": "online", | ||
"volume": 2000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "pune", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 300 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "online", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "retail", | ||
"volume": 500 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap" | ||
}, | ||
{ | ||
"item": "Soap" | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "mumbai", | ||
"medium": { | ||
"type": "online", | ||
"volume": 5000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "mumbai", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 700 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "mumbai", | ||
"medium": { | ||
"type": "retail", | ||
"volume": 500 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 3000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "online", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "retail", | ||
"volume": 500 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo" | ||
}, | ||
{ | ||
"item": "Mirror", | ||
"sales": { | ||
"city": "delhi" | ||
} | ||
}, | ||
{ | ||
"item": "Comb" | ||
}, | ||
{ | ||
"item": "Comb" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters