Module: js-data-rethinkdb

Registered as js-data-rethinkdb in NPM.

Details
Source
src/index.js, line 1079
Examples

npm i --save js-data-rethinkdb js-data

import { RethinkDBAdapter } from 'js-data-rethinkdb';
const adapter = new RethinkDBAdapter();

const RethinkDBAdapter = require('js-data-rethinkdb').RethinkDBAdapter;
const adapter = new RethinkDBAdapter();

Classes

RethinkDBAdapter

Members


<static> OPERATORS

Default predicate functions for the filtering operators.

Details
Source
src/index.js, line 27
Properties:
Name Type Description
= Function

Equality operator.

== Function

Equality operator.

!= Function

Inequality operator.

> Function

"Greater than" operator.

>= Function

"Greater than or equal to" operator.

< Function

"Less than" operator.

<= Function

"Less than or equal to" operator.

isectEmpty Function

Operator to test that the intersection between two arrays is empty.

isectNotEmpty Function

Operator to test that the intersection between two arrays is NOT empty.

in Function

Operator to test whether a value is found in the provided array.

notIn Function

Operator to test whether a value is NOT found in the provided array.

contains Function

Operator to test whether an array contains the provided value.

notContains Function

Operator to test whether an array does NOT contain the provided value.


<static> RethinkDBAdapter

Examples

import { RethinkDBAdapter } from 'js-data-rethinkdb';
const adapter = new RethinkDBAdapter();

const RethinkDBAdapter = require('js-data-rethinkdb').RethinkDBAdapter;
const adapter = new RethinkDBAdapter();

<static> version

Details of the current version of the js-data-rethinkdb module.

Details
Type Source
Object src/index.js, line 1039
Properties:
Name Type Description
version.full String

The full semver value.

version.major Number

The major version number.

version.minor Number

The minor version number.

version.patch Number

The patch version number.

version.alpha String | Boolean

The alpha version value, otherwise false if the current version is not alpha.

version.beta String | Boolean

The beta version value, otherwise false if the current version is not beta.

Examples

import { version } from 'js-data-rethinkdb';
console.log(version.full);

const version = require('js-data-rethinkdb').version;
console.log(version.full);