Skip to main content

SpaceChildrenClient

Defined in: src/dapi.ts:893

Client for querying and filtering children of a space. Children can include subspaces (Projects), files (FileInfo), and various entities like scripts, queries, and connections.

Extends

Constructors

Constructor

new SpaceChildrenClient(s): SpaceChildrenClient

Defined in: src/dapi.ts:894

Parameters

ParameterType
sany

Returns

SpaceChildrenClient

Overrides

HttpDataSource.constructor

Properties

PropertyTypeInherited fromDefined in
clsNamestringHttpDataSource.clsNamesrc/dapi.ts:246
dartanyHttpDataSource.dartsrc/dapi.ts:245

Methods

allPackageVersions()

allPackageVersions(): HttpDataSource<Entity>

Defined in: src/dapi.ts:301

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

Returns

HttpDataSource<Entity>

Inherited from

HttpDataSource.allPackageVersions


by()

by(i): HttpDataSource<Entity>

Defined in: src/dapi.ts:306

Parameters

ParameterType
inumber

Returns

HttpDataSource<Entity>

Inherited from

HttpDataSource.by


count()

count(): Promise<number>

Defined in: src/dapi.ts:272

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>

Inherited from

HttpDataSource.count


delete()

delete(e): Promise<void>

Defined in: src/dapi.ts:296

Deletes an entity.

Parameters

ParameterType
eEntity

Returns

Promise<void>

Inherited from

HttpDataSource.delete


filter()

filter(types, includeLinked?): SpaceChildrenClient

Defined in: src/dapi.ts:905

Filters the children by entity types and whether to include linked items. By default, only directly owned children are returned (not links).

Parameters

ParameterTypeDefault valueDescription
typesstringundefinedComma-separated list of entity types to include (e.g., 'Script,DataQuery')
includeLinkedbooleanfalseIf true, includes linked references in addition to owned children (default: false)

Returns

SpaceChildrenClient

A new SpaceChildrenClient with the filter applied

Overrides

HttpDataSource.filter


find()

find(id): Promise<Entity>

Defined in: src/dapi.ts:286

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<Entity>

{Promise<object>} - entity.

Inherited from

HttpDataSource.find


first()

first(): Promise<Entity>

Defined in: src/dapi.ts:277

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

Returns

Promise<Entity>

Inherited from

HttpDataSource.first


include()

include(include): HttpDataSource<Entity>

Defined in: src/dapi.ts:341

Includes entity in the result

Parameters

ParameterType
includestring

Returns

HttpDataSource<Entity>

Inherited from

HttpDataSource.include


list()

list(options?): Promise<Entity[]>

Defined in: src/dapi.ts:257

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
options{ filter?: string; order?: string; pageNumber?: number; pageSize?: number; }
options.filter?string
options.order?string
options.pageNumber?number
options.pageSize?number

Returns

Promise<Entity[]>

Inherited from

HttpDataSource.list


nextPage()

nextPage(): HttpDataSource<Entity>

Defined in: src/dapi.ts:320

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<Entity>

Inherited from

HttpDataSource.nextPage


order()

order(fieldName, desc?): HttpDataSource<Entity>

Defined in: src/dapi.ts:335

Instructs data source to return results in the specified order.

Parameters

ParameterTypeDefault value
fieldNamestringundefined
descbooleanfalse

Returns

HttpDataSource<Entity>

Inherited from

HttpDataSource.order


page()

page(i): HttpDataSource<Entity>

Defined in: src/dapi.ts:312

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

Parameters

ParameterType
inumber

Returns

HttpDataSource<Entity>

Inherited from

HttpDataSource.page


save()

save(e): Promise<Entity>

Defined in: src/dapi.ts:291

Saves an entity.

Parameters

ParameterType
eEntity

Returns

Promise<Entity>

Inherited from

HttpDataSource.save