Skip to content

Commit 57dba82

Browse files
andrew-colemanmattbaileyuk
authored andcommitted
unwrap outer array when evaluating wildcard
Signed-off-by: andrew-coleman <[email protected]>
1 parent ccb0109 commit 57dba82

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/jsonata.js

+3
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,9 @@ var jsonata = (function() {
597597
*/
598598
function evaluateWildcard(expr, input) {
599599
var results = createSequence();
600+
if (Array.isArray(input) && input.outerWrapper && input.length > 0) {
601+
input = input[0];
602+
}
600603
if (input !== null && typeof input === 'object') {
601604
Object.keys(input).forEach(function (key) {
602605
var value = input[key];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"expr": "*",
3+
"data": [1,2,3],
4+
"bindings": {},
5+
"result": [1,2,3]
6+
}

0 commit comments

Comments
 (0)