review fixes

This commit is contained in:
D070615
2025-03-31 13:31:08 +02:00
parent d9ae2de250
commit d56806957e
7 changed files with 80 additions and 83 deletions

View File

@@ -1,32 +0,0 @@
namespace sap.capire.bookshop;
using { sap.capire.bookshop.Genres } from '@capire/bookshop';
aspect Hierarchy {
LimitedDescendantCount : Integer64 = null;
DistanceFromRoot : Integer64 = null;
DrillState : String = null;
Matched : Boolean = null;
MatchedDescendantCount : Integer64 = null;
LimitedRank : Integer64 = null;
}
annotate Hierarchy with @Capabilities.FilterRestrictions.NonFilterableProperties: [
'LimitedDescendantCount',
'DistanceFromRoot',
'DrillState',
'Matched',
'MatchedDescendantCount',
'LimitedRank'
];
annotate Hierarchy with @Capabilities.SortRestrictions.NonSortableProperties: [
'LimitedDescendantCount',
'DistanceFromRoot',
'DrillState',
'Matched',
'MatchedDescendantCount',
'LimitedRank'
];
extend sap.capire.bookshop.Genres with Hierarchy;