JSONiq
Posted by Bruce Tsai
06/07/2016
JSONiq 也是個用來查詢 JSON 資料用的語言,不過和 JSONPath 不一樣,比較像是 SQL 那樣有點程式化,而且語法偏 functional programming 的方式
for $sarah in collection("users"),
$friend in collection("users")
where $sarah.name eq "Sarah"
and
(some $name in $sarah.friends[]
satisfies $friend.name eq $name)
return $friend