Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XPath // のように JQ で相対パスまたは名前を使用することは可能ですか?
または、JQ で .level1.*.level3.element のようなワイルドカードを使用することは可能ですか?
それが、..フィルターが表すことを意図していたものです。使い方は次のようになります。
..
.level1 | .. | .level3? .element
注: を使用する必要があります。?そうしないと、対応するプロパティを持たないオブジェクトが再帰的に処理されるため、エラーが発生します。
?