1 #pragma once
2 
3 #include "filter_expr_parser_ast.hpp"
4 
5 #include <nlohmann/json.hpp>
6 
7 namespace redfish
8 {
9 
10 bool applyFilter(nlohmann::json& body,
11                  const filter_ast::LogicalAnd& filterParam);
12 
13 }
14