ReQL command: get_write_hook

Command syntax

table.get_write_hook() → null/object

Description

Gets the write hook of this table. If a write hook exists, the result is an object of the following form:

{
  :function => <binary>,
  :query => "setWriteHook(function(_var1, _var2, _var3) { return ...; })"
}

Example: Get the write hook for the comments table.

r.table('comments').get_write_hook().run(conn)

© RethinkDB contributors
Licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
https://rethinkdb.com/api/ruby/get_write_hook/