Skip to content
Nameless edited this page Jun 8, 2018 · 4 revisions

Fetching Data

Fetch data from and id in a table in a database

connection.reql().db('database').table('table').get('id').run()

Inserting Data

Insert data into a table in a database
This data is required to valid JSON

connection.reql().db('database').table('table').insert({
    id = 'id',
    data = {
        'arrays',
        'are',
        'cool'
    },
    these = 'keys work',
    too = true
}).run()
Clone this wiki locally