Registered as js-data-rethinkdb
in NPM.
Source |
---|
src/index.js, line 1028 |
npm i --save js-data-rethinkdb@beta js-data@beta rethinkdbdash
import {RethinkDBAdapter} from 'js-data-rethinkdb'
const adapter = new RethinkDBAdapter()
var RethinkDBAdapter = require('js-data-rethinkdb').RethinkDBAdapter
var adapter = new RethinkDBAdapter()
Members
-
<static> OPERATORS
-
Default predicate functions for the filtering operators.
DetailsSource src/index.js, line 27 Properties:
Name Type Description ==
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
-
RethinkDBAdapter class.
DetailsType Source See Constructor src/index.js, line 1012 Examplesimport {RethinkDBAdapter} from 'js-data-rethinkdb' const adapter = new RethinkDBAdapter()
var RethinkDBAdapter = require('js-data-rethinkdb').RethinkDBAdapter var adapter = new RethinkDBAdapter()
-
<static> version
-
Details of the current version of the
js-data-rethinkdb
module.DetailsType Source Object src/index.js, line 988 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.Examplesimport {version} from 'js-data-rethinkdb' console.log(version.full)
var version = require('js-data-rethinkdb').version console.log(version.full)