次のような複雑なJSON配列とハッシュでアイテムを検索する場合:
[
{ "id": 1, "name": "One", "objects": [
{ "id": 1, "name": "Response 1", "objects": [
// etc.
}]
}
]
アイテムの検索に使用できるクエリ言語はありますin [0].objects where id = 3
か?
in(...).where(...).select(...)
)ことがわかりました:hugoware.net/Projects/jLinq。