-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
The JSON content is as follows:
[{
"header": "global header1",
"items": []
}, {
"header": "global header2",
"items": [{
"group_header": "group_header21",
"item_data": [{
"item-key": 211
}, {
"item-key": 212,
"item-value": {
"a4": "b4"
}
}, {
"item-key": 213
}
]
}, {
"group_header": "group_header22",
"item_data": [{
"item-key": 221
}, {
"item-key": 222
}, {
"item-key": 223,
"item-value": {
"a5": "b5"
}
}
]
}
]
}
]
JsonPath use $[*].items[*] , Find the content of column 'group_header'
.--------------.
| tLogRow_9 |
|=------------=|
|group_header |
|=------------=|
|null |
|group_header22|
'--------------'
The expected content should actually be:
.--------------.
| tLogRow_9 |
|=------------=|
|group_header |
|=------------=|
|group_header21|
|group_header22|
'--------------'
or
.--------------.
| tLogRow_9 |
|=------------=|
|group_header |
|=------------=|
|null |
|group_header21|
|group_header22|
'--------------'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
