Creates a filter option for the a!facet() function.
This function, when used within the options
parameter in the a!facet() function, creates a user filter option. See the Expressible User Filters page for more information and common uses.
a!facetOption( id, name, filter, dataCount )
1
2
3
4
5
6
7
8
9
=a!facetOption(
id: 2,
name: "Active",
filter: a!queryFilter(
field: "status",
operator: "=",
value: "active"
)
)
On This Page