指定された検索条件でEntityを一括削除します。
一括削除パラメータ
削除結果
指定されたリストのEntityを一括削除します。
一括削除パラメータ
削除結果
ごみ箱データを取得します。
ごみ箱データ取得パラメータ
ごみ箱データ
SearchView定義をロードします。
パラメータ
SearchView定義
ごみ箱からのデータの物理削除を行います。
物理削除パラメータ
物理削除結果
ごみ箱からの復元を行います。
復元パラメータ
復元結果
指定された条件でEntityを検索します。
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を取り扱うロジックを生成します。