try {
api.dispatch(progressIndicatorActions.START_WORKING(this.getId()));
const uuidPrefix = api.getState().auth.config.uuidPrefix;
- const uuid = `${uuidPrefix}-j7d0g-fffffffffffffff`;
+ const publicProjectUuid = `${uuidPrefix}-j7d0g-publicfavorites`;
const responseLinks = await this.services.linkService.list({
limit: dataExplorer.rowsPerPage,
offset: dataExplorer.page * dataExplorer.rowsPerPage,
filters: new FilterBuilder()
- .addEqual('linkClass', LinkClass.STAR)
- .addILike("name", dataExplorer.searchValue)
- .addEqual('ownerUuid', uuid)
- .addIsA("headUuid", typeFilters)
+ .addEqual('link_class', LinkClass.STAR)
+ .addEqual('owner_uuid', publicProjectUuid)
+ .addIsA("head_uuid", typeFilters)
.getFilters()
});
const uuids = responseLinks.items.map(it => it.headUuid);