Can we add two or more filters in facetOption

Can we add two or more filters in facetOption? if not, is there any workaround solution?

a!facet(
name : "Status",
options : {
a!facetOption(
id : 1,
name : "Active",
          
filter : {
a!queryFilter(
field:"StartDate",
operator:"<=",
value: today()
),
a!queryFilter(
field:"EndDate",
operator:">=",
value: today()
)
}
)
},
defaultOption: "Active"
)

OriginalPostID-240150

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data