ReQL command reference - RethinkDB
ReQL command: getWriteHook
Command syntax
table.getWriteHook() → 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').getWriteHook().run(conn, callback)
Related commands
Get more help
Couldn't find what you were looking for?
- Ask a question on Stack Overflow
- Chat with us and our community on Slack
- Talk to the team on IRC on #rethinkdb@freenode.net — via Webchat
- Ping @rethinkdb on Twitter
- Post an issue on the documentation issue tracker on GitHub
Contribute: edit this page or open an issue