not_filter

Macro not_filter 

Source
macro_rules! not_filter {
    ($filter:expr) => { ... };
}
Expand description

Negate a filter.

ยงExamples

use prax_query::{filter, not_filter};

let f = not_filter!(filter!(deleted == true));