コンパイラかく語りき

import { Fun } from 'programming'

Rethinkdbでデータをprepend, appendする方法

メモ。データをprepend, appendする方法。

r.table('shop').get("hoge_hoge_id").update({
 drinks : r.row('drinks').append('White wine')
})

append, prepend自体はDBのデータを変更しないことに注意。

参考: stackoverflow: How to append an element to an array in rethinkdb

リファレンス