-
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.
Co-authored-by: Srikar Mannepalli <[email protected]>
- Loading branch information
1 parent
5822f1a
commit 5f58106
Showing
2 changed files
with
94 additions
and
0 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
46 changes: 46 additions & 0 deletions
46
...store/src/integrationTest/resources/query/test_aggr_nested_arrays_and_unnest_filters.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,46 @@ | ||
[ | ||
{ | ||
"item": "Soap", | ||
"price": 10, | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 1000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Soap", | ||
"price": 10, | ||
"sales": { | ||
"city": "pune", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 300 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"price": 5, | ||
"sales": { | ||
"city": "delhi", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 3000 | ||
} | ||
} | ||
}, | ||
{ | ||
"item": "Shampoo", | ||
"price": 5, | ||
"sales": { | ||
"city": "mumbai", | ||
"medium": { | ||
"type": "distributionChannel", | ||
"volume": 700 | ||
} | ||
} | ||
} | ||
] |