Files
faveo/vendor/mtdowling/jmespath.php/tests/compliance/perf/wildcardindex.json
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

18 lines
476 B
JSON

[{
"description": "Multiple wildcards",
"given":
{"foo": [{"bar": "one"}, {"bar": "two"}, {"bar": "three"}, {"notbar": "four"}]},
"cases": [
{
"name": "wildcard_with_field_match",
"expression": "foo[*].bar",
"result": ["one", "two", "three"]
},
{
"name": "wildcard_with_field_match2",
"expression": "foo[*].notbar",
"result": ["four"]
}
]
}]