* integrate JS-API with monorepo * [ci:force] fix token issue [ci:force] migrate docs folder [ci:force] clean personal tokens * [ci:force] gha workflow support * [ci:force] npm publish target * fix js-api test linting * [ci:force] fix test linting, mocks, https scheme * [ci:force] fix https scheme * [ci:force] typescript mappings * [ci:force] update scripts * lint fixes * linting fixes * fix linting * [ci:force] linting fixes * linting fixes * [ci:force] remove js-api upstream and corresponding scripts * [ci:force] jsdoc fixes * fix jsdoc linting * [ci:force] jsdoc fixes * [ci:force] jsdoc fixes * jsdoc fixes * jsdoc fixes * jsdoc fixes * [ci:force] fix jsdoc * [ci:force] reduce code duplication * replace 'chai' expect with node.js assert * replace 'chai' expect with node.js assert * [ci:force] remove chai and chai-spies for js-api testing * [ci:force] cleanup and fix imports * [ci:force] fix linting * [ci:force] fix unit test * [ci:force] fix sonar linting findings * [ci:force] switch activiti api models to interfaces (-2.5% reduction of bundle) * [ci:force] switch activiti api models to interfaces * [ci:force] switch AGS api models to interfaces * [ci:force] switch AGS api models to interfaces * [ci:force] switch search api models to interfaces * [ci:force] switch content api models to interfaces where applicable
4.8 KiB
AspectsApi
All URIs are relative to https://localhost/alfresco/api/-default-/public/alfresco/versions/1
Method | HTTP request | Description |
---|---|---|
getAspect | GET /aspects/{aspectId} | Get an aspect |
listAspects | GET /aspects | List aspects |
getAspect
Get an aspect
This is available in Alfresco 7.0.0 and newer versions.
Parameters
Name | Type | Description |
---|---|---|
aspectId | string | The Qname of an aspect(prefix:name) e.g 'cm:title' |
Return type: AspectEntry
Example
import { AlfrescoApi, AspectsApi} from '@alfresco/js-api';
const alfrescoApi = new AlfrescoApi({
hostEcm: 'http://127.0.0.1:8080'
});
const aspectsApi = new AspectsApi(alfrescoApi);
aspectsApi.getAspect(aspectId).then((data) => {
console.log('API called successfully. Returned data: ' + data);
});
listAspects
List aspects
This is available in Alfresco 7.0.0 and newer versions.
Gets a list of aspects from the data dictionary. The System aspects will be ignored by default.
{
"list": {
"pagination": {
"count": 0,
"hasMoreItems": true,
"totalItems": 0,
"skipCount": 0,
"maxItems": 0
},
"entries": [
{
"entry": {
"associations": [],
"mandatoryAspects": [],
"includedInSupertypeQuery": true,
"description": "Titled",
"isContainer": false,
"model": {
"id": "cm:contentmodel",
"author": "Alfresco",
"description": "Alfresco Content Domain Model",
"namespaceUri": "http://www.alfresco.org/model/content/1.0",
"namespacePrefix": "cm"
},
"id": "cm:titled",
"title": "Titled",
"properties": [
{
"id": "cm:title",
"title": "Title",
"description": "Content Title",
"dataType": "d:mltext",
"isMultiValued": false,
"isMandatory": false,
"isMandatoryEnforced": false,
"isProtected": false
}
]
}
}
]
}
}
Parameters
Name | Type | Description | Notes |
---|---|---|---|
where | string | Optionally filter the list. | [optional] |
Here are some examples:
An aspect should represented in the following format(prefix:name). e.g 'cm:title'.
The following where clause will only return aspects from the namespace1:model and namespace2:model.
where=(modelId in ('namespace1:model','namespace2:model'))
where=(modelId in ('namespace1:model INCLUDESUBASPECTS','namespace2:model'))
The following where clause will only return sub aspects for the given parents.
where=(parentId in ('namespace1:parent','namespace2:parent'))
The following where clause will only return aspects that match the pattern.
where=(namespaceUri matches('http://www.alfresco.*'))
The following where clause will only return aspects that don't match the pattern.
where=(not namespaceUri matches('http://www.alfresco.*'))
Name | Type | Description | Notes |
---|---|---|---|
skipCount | number | The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. | [optional] [default to 0] |
maxItems | number | The maximum number of items to return in the list. If not supplied then the default value is 100. | [optional] [default to 100] |
include | string | Returns additional information about the aspect. The following optional fields can be requested: properties , mandatoryAspects , associations |
[optional] |
Return type: AspectPaging
Example
import { AlfrescoApi, AspectsApi} from '@alfresco/js-api';
const alfrescoApi = new AlfrescoApi({
hostEcm: 'http://127.0.0.1:8080'
});
const aspectsApi = new AspectsApi(alfrescoApi);
aspectsApi.listAspects(opts).then((data) => {
console.log('API called successfully. Returned data: ' + data);
});