We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb0109 commit 57dba82Copy full SHA for 57dba82
src/jsonata.js
@@ -597,6 +597,9 @@ var jsonata = (function() {
597
*/
598
function evaluateWildcard(expr, input) {
599
var results = createSequence();
600
+ if (Array.isArray(input) && input.outerWrapper && input.length > 0) {
601
+ input = input[0];
602
+ }
603
if (input !== null && typeof input === 'object') {
604
Object.keys(input).forEach(function (key) {
605
var value = input[key];
test/test-suite/groups/wildcards/case009.json
@@ -0,0 +1,6 @@
1
+{
2
+ "expr": "*",
3
+ "data": [1,2,3],
4
+ "bindings": {},
5
+ "result": [1,2,3]
6
+}
0 commit comments