指定された検索条件でEntityを一括削除します。
指定されたリストのEntityを一括削除します。
指定された条件でEntityをダウンロードします。
ごみ箱データを取得します。
SearchView定義をロードします。
ごみ箱からのデータの物理削除を行います。
ごみ箱からの復元を行います。
指定された条件でEntityを検索します。
全選択の対象を検索します。
const { searchEntity } = Mdc.useSearchViewService();
searchEntity(
{
webApi: 'mdc/entityview/search/search',
searchCondition: {
searchType: 'Normal',
normal: {
name: '名前'
},
detail: {
conditionList: [
{
index: 0,
property: '',
conditionalExpression: '',
value: '',
},
],
compoundCondition: '',
compoundConditionalExpression: '',
},
fixed: '',
allVersion: false,
},
sortCondition: {
sortKey: '',
sortType: 'ASC'
},
offset: 0,
entityName: 'TestEntity',
viewName: 'DEFAULT'
})
.then(({ isSuccess, data }) => {
console.log(isSuccess);
if (isSuccess) {
console.log(data.data);
console.log(data.count);
console.log(data.hasNext);
}
});
SearchViewのAPIを取り扱うロジックを生成します。