🙌 Filter entries as desired.
1. Overview
This Interaction enables you to filter jobs to only display those jobs that are defined in the function. It only displays those specific entries and leaves out the rest.
2. Example
This example shows how to filter jobs based on their billing status. It returns all those jobs where billing-status is not invoiced.
async function handler(clev) {
let actions = [];
actions.push(
clev.setFilters("job", [
{
subject: "billing-status",
requestType: "i",
type: "array",
operator: "none_of",
ignoreCase: true,
value: ["582198"],
},
])
);
return clev.mergeAll(actions);
}📌 Need Help?
