Skip to main content

HttpDataSource<T>

Common functionality for handling collections of entities stored on the server. Works with Datagrok REST API, allows to get filtered and paginated lists of entities, Can be extended with specific methods. (i.e. UsersDataSource)

Extended by

Type parameters

Type parameter
T

Constructors

new HttpDataSource()

new HttpDataSource<T>(s, clsName?): HttpDataSource<T>

Parameters

ParameterType
sany
clsName?null | string

Returns

HttpDataSource<T>

Constructs

HttpDataSource

Source

src/dapi.ts:272

Properties

PropertyType
clsNamestring
dartany

Methods

allPackageVersions()

allPackageVersions(): HttpDataSource<T>

Turns off package versions isolation. This DataSource will return all entities in all versions, not only the current one *

Returns

HttpDataSource<T>

Source

src/dapi.ts:325


by()

by(i): HttpDataSource<T>

Parameters

ParameterType
inumber

Returns

HttpDataSource<T>

Source

src/dapi.ts:330


count()

count(): Promise<number>

Counts entities that satisfy the filtering criteria (see filter). See examples: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/smart-search

Returns

Promise<number>

Source

src/dapi.ts:295


delete()

delete(e): Promise<void>

Deletes an entity.

Parameters

ParameterType
eEntity

Returns

Promise<void>

Source

src/dapi.ts:320


filter()

filter(w): HttpDataSource<T>

Applies filter to current request. Also can be set with list method "options" parameter See example: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/smart-search

Parameters

ParameterTypeDescription
wstring

Returns

HttpDataSource<T>

Source

src/dapi.ts:356


find()

find(id): Promise<T>

Returns an entity with the specified id. Throws an exception if an entity does not exist, or is not accessible in the current context. Sample: https://public.datagrok.ai/js/samples/data-access/save-and-load-df

Parameters

ParameterTypeDescription
idstringGUID of the corresponding object

Returns

Promise<T>

{Promise<object>} - entity.

Source

src/dapi.ts:310


first()

first(): Promise<T>

Returns fist entity that satisfies the filtering criteria (see filter).

Returns

Promise<T>

Promise<object>

Source

src/dapi.ts:301


include()

include(include): HttpDataSource<T>

Includes entity in the result

Parameters

ParameterTypeDescription
includestring

Returns

HttpDataSource<T>

Source

src/dapi.ts:373


list()

list(options): Promise<T[]>

Returns all entities that satisfy the filtering criteria (see filter). See examples: https://public.datagrok.ai/js/samples/dapi/projects-list Smart filter: https://datagrok.ai/help/datagrok/smart-search

Parameters

ParameterType
optionsobject
options.filter?string
options.order?string
options.pageNumber?number
options.pageSize?number

Returns

Promise<T[]>

Source

src/dapi.ts:280


nextPage()

nextPage(): HttpDataSource<T>

Returns next page of all entities that satisfy the filtering criteria (see filter). Works only if pageSize was set during previous list() call See examples: https://public.datagrok.ai/js/samples/dapi/projects-list

Returns

HttpDataSource<T>

Source

src/dapi.ts:345


order()

order(fieldName, desc): HttpDataSource<T>

Instructs data source to return results in the specified order.

Parameters

ParameterTypeDefault valueDescription
fieldNamestringundefined
descbooleanfalse

Returns

HttpDataSource<T>

Source

src/dapi.ts:365


page()

page(i): HttpDataSource<T>

Restricts results to the specified page number. See also nextPage.

Parameters

ParameterType
inumber

Returns

HttpDataSource<T>

Source

src/dapi.ts:336


save()

save(e): Promise<T>

Saves an entity.

Parameters

ParameterType
eEntity

Returns

Promise<T>

Source

src/dapi.ts:315