-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: Client SDKs
-
Tags:
The predicates are not part of the queryParams, but of the query object itself:
const searchTrash = (searchText) => { return new Promise(((resolve, reject) => { nx.repository() .query({ pageProvider: "default_trash_search", ecm_fulltext: searchText }) .then((res) => resolve(res)) .catch((err) => reject(new Error(err))) })) };