想知道是否可以在查询子"Id"时从下面的json返回父"Id"
{
"DistributionList": {
"Items": [
{
"Origins": {
"Items": [
{
"Id": "abc"
}
],
"Quantity": 1
},
"Id": "parent123"
},
{
"Origins": {
"Items": [
{
"Id": "def"
}
],
"Quantity": 1
},
"Id": "parent345"
}
]
}
}
例如。如果我查询子 ID "abc",它应该返回"parent123"。
执行以下操作:
more jsonfile | jq '.DistributionList.Items[].Origins.Items[] | select(.Id == "abc") | .Id'
只会返回"abc"->但我需要父 ID。不确定是否有办法用jq做到这一点
过滤器:
.. | objects | select(.Origins.Items[]? | .Id == "abc") | .Id
生产:
"parent123"
您可能需要参数化过滤器,例如:
def parent(child):
.. | objects | select( .Origins.Items[]? | .Id == child) | .Id ;
原始问题中的过滤器接近解决方案。 所需要的只是重新排列select
中的内容。 例如
.DistributionList.Items[]
| select(.Origins.Items[].Id == "abc")
| .Id