Skip to content
Nameless edited this page Apr 13, 2019 · 2 revisions

Note

RethinkDB Documentation is in JavaScript. Code will need to be written in Lua.

Static Methods

db(name)

  • name: string

Sets the database to query in this query.
Consult RethinkDB Documentation

table(name)

  • name: string

Sets the table to query in this query.
Consult RethinkDB Documentation

get(id)

  • name: string

Sets the id to query in this query.
Consult RethinkDB Documentation

getField(field)

  • field: string

Consult RethinkDB Documentation

insert(tbl)

  • tbl: table

Consult RethinkDB Documentation

js(str)

  • str: string

Consult RethinkDB Documentation

config()

Consult RethinkDB Documentation

replace(tbl)

  • tbl: table

Consult RethinkDB Documentation

update(tbl)

  • tbl: table

Consult RethinkDB Documentation

filter(tbl)

  • tbl: table

Consult RethinkDB Documentation

changes(tbl)

Consult RethinkDB Documentation

indexCreate(name)

  • name: string

Consult RethinkDB Documentation

indexDrop(name)

  • name: string

Consult RethinkDB Documentation

indexList()

Consult RethinkDB Documentation

dbCreate(name)

  • name: string

Consult RethinkDB Documentation

dbDrop(name)

  • name: string

Consult RethinkDB Documentation

dbList()

Consult RethinkDB Documentation

delete()

Consult RethinkDB Documentation

tableCreate(name)

  • name: string

Consult RethinkDB Documentation

tableDrop(name)

  • name: string

Consult RethinkDB Documentation

tableList()

Consult RethinkDB Documentation

now()

Consult RethinkDB Documentation

run([[tbl,] callback])

Consult RethinkDB Documentation