You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/vendor/mtdowling/jmespath.php/tests/compliance/perf/wildcardindex.json

17 lines
476 B

[{
"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"]
}
]
}]