Skip to main content

clearFilter()

Last updated 5/09/2024

Example

The following code deletes the previously added items to the order.

Deletes the previous filter created from a call to addFilter()
function ClearOrders(five: Five, context: any, result: FiveError) : FiveError {
five.clearFilter('Orders.OrdersKey');
return five.success(result);
}