Global

Members

NDARRAY_DTYPES :Object

Type:
  • Object
Source:

Type Definitions

CommandResult

An object the shows the status of a command.

Type:
  • object
Properties:
Name Type Description
commandId string

The auto-generated unique id of the command.

response object | string

The response of the command. If a command is sent asynchronously, this will simply be the string "ack". In synchronous mode, this will usually be an object consisting of the primary key of the data that was affected by the command.

result object

Contains detailed error information when available.

Properties
Name Type Description
errors array

Will contain error information when appropriate.

commit array

Contains details of each committed document.

Source:

DataRow

A row of data, with {columnname: rowvalue}.

Type:
  • Object
Source:

DatasetData

Type:
  • object
Properties:
Name Type Description
metaData object

The dataset metadata (see nqmMeta option in getDatasetData).

metaDataUrl string

The URL to the dataset metadata (see nqmMeta option in getDatasetData).

data Array.<DataRow>

The dataset documents.

Source:

NDARRAY_FTYPES

Type:
  • string
Source:

NdarrayData

Type:
  • object
Properties:
Name Type Description
data Buffer | Object

The ndarray data Buffer or Stream.

dtype string

The ndarray data type is of type NDARRAY_DTYPES.

shape Array.<number>

The ndarray shape.

major boolean

The ndarray major (true - row-major, false - column-major).

ftype string

The ndarray file type is of type NDARRAY_FTYPES.

Source:

NdarrayData

Type:
  • object
Properties:
Name Type Description
data Buffer | Object

The ndarray data Buffer or Stream.

dtype string

The ndarray data type is of type NDARRAY_DTYPES.

shape Array.<number>

The ndarray shape.

major boolean

The ndarray major (true - row-major, false - column-major).

ftype string

The ndarray file type is of type NDARRAY_FTYPES.

Source:

Resource

An object that describes a Resource/Dataset

Type:
  • object
Properties:
Name Type Description
description string
id string

The unique ID of the resource

name string
parents Array.<string>
schemaDefinition object
tags Array.<string>
meta object
Source:

SQLiteStatementCreator(dataRowKeys)

Parameters:
Name Type Description
dataRowKeys Array.<string>

List of columns in the data. This must be in the same order as the data will be binded.

Source:
Returns:

An SQLite Statement with binding parameters.

UniqueIndex

Array of sort-order: column name, ie {"asc": "column1"} or {"desc": "col2"}

Type:
  • Array.<{string: string}>
Source: