How to use the rethinkdb-ts.r.db function in rethinkdb-ts

To help you get started, we’ve selected a few rethinkdb-ts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rethinkdb / rethinkdb-desktop / app / main / db / queries / logs.js View on Github external
function getLogs () {
  return r
    .db(SYSTEM_DB)
    .table('logs')
    .limit(10)
    .coerceTo('array')
    .run(connection())
}
github rethinkdb / rethinkdb-desktop / app / main / db / queries / server.js View on Github external
const serverList = () => {
  return r
    .db('rethinkdb')
    .table('stats')
    .filter(row =>
      row('id')
        .nth(0)
        .eq('server')
    )
    .coerceTo('array')
}
github rethinkdb / rethinkdb-desktop / app / main / db / queries / database.js View on Github external
const addDatabase = ({ name }) => {
  return r
    .db(SYSTEM_DB)
    .table('db_config')
    .insert({ name })
    .run(connection())
}
github rethinkdb / rethinkdb-desktop / app / main / db / queries / table.js View on Github external
const deleteTables = tablesToDelete => {
  return r
    .db(SYSTEM_DB)
    .table('table_config')
    .filter(table => {
      return r.expr(tablesToDelete).contains({
        db: table('db'),
        name: table('name')
      })
    })
    .delete({ returnChanges: true })
    .run(connection())
}

rethinkdb-ts

RethinkDB TypeScript driver

Apache-2.0
Latest version published 6 months ago

Package Health Score

70 / 100
Full package analysis

Similar packages