SpacesDataSource
Data source for working with Spaces - hierarchical containers for organizing entities and files. Spaces support nested subspaces, file storage, and can contain various entities like scripts, queries, etc.
Extends
Constructors
new SpacesDataSource()
new SpacesDataSource(
s):SpacesDataSource
Parameters
| Parameter | Type |
|---|---|
s | any |
Returns
Overrides
Source
Properties
| Property | Type | Inherited from |
|---|---|---|
clsName | string | HttpDataSource.clsName |
dart | any | HttpDataSource.dart |
Methods
allPackageVersions()
allPackageVersions():
HttpDataSource<Project>
Turns off package versions isolation. This DataSource will return all entities in all versions, not only the current one *
Returns
Inherited from
HttpDataSource . allPackageVersions
Source
by()
by(
i):HttpDataSource<Project>
Parameters
| Parameter | Type |
|---|---|
i | number |
Returns
Inherited from
Source
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>
Inherited from
Source
createRootSpace()
createRootSpace(
name):Promise<Project>
Parameters
| Parameter | Type |
|---|---|
name | string |
Returns
Promise <Project>
Source
delete()
delete(
e):Promise<void>
Deletes an entity.
Parameters
| Parameter | Type |
|---|---|
e | Entity |
Returns
Promise<void>
Inherited from
Source
filter()
filter(
w):HttpDataSource<Project>
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/navigation/views/browse#entity-search
Parameters
| Parameter | Type |
|---|---|
w | string |
Returns
Inherited from
Source
find()
find(
id):Promise<Project>
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
| Parameter | Type | Description |
|---|---|---|
id | string | GUID of the corresponding object |
Returns
Promise <Project>
{Promise<object>} - entity.
Inherited from
Source
first()
first():
Promise<Project>
Returns fist entity that satisfies the filtering criteria (see filter).
Returns
Promise <Project>
Inherited from
Source
id()
id(
spaceId):SpaceClient
Returns a SpaceClient for the space with the specified ID. Use the returned client to manage subspaces, entities, and files within the space.
Parameters
| Parameter | Type | Description |
|---|---|---|
spaceId | string | The unique identifier of the space Project.id |
Returns
Source
include()
include(
include):HttpDataSource<Project>
Includes entity in the result
Parameters
| Parameter | Type |
|---|---|
include | string |
Returns
Inherited from
Source
list()
list(
options):Promise<Project[]>
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
| Parameter | Type |
|---|---|
options | object |
options.filter? | string |
options.order? | string |
options.pageNumber? | number |
options.pageSize? | number |
Returns
Promise <Project[]>
Inherited from
Source
nextPage()
nextPage():
HttpDataSource<Project>
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
Inherited from
Source
order()
order(
fieldName,desc):HttpDataSource<Project>
Instructs data source to return results in the specified order.
Parameters
| Parameter | Type | Default value |
|---|---|---|
fieldName | string | undefined |
desc | boolean | false |
Returns
Inherited from
Source
page()
page(
i):HttpDataSource<Project>
Restricts results to the specified page number. See also nextPage.
Parameters
| Parameter | Type |
|---|---|
i | number |
Returns
Inherited from
Source
rootSpaceExists()
rootSpaceExists(
name):Promise<boolean>
Checks if a root space (top-level space) with the given name already exists. Use this before creating a new root space to avoid naming conflicts.
Parameters
| Parameter | Type |
|---|---|
name | string |
Returns
Promise<boolean>
Source
save()
save(
e):Promise<Project>
Saves an entity.
Parameters
| Parameter | Type |
|---|---|
e | Entity |
Returns
Promise <Project>